Files
OpenNetworkLinux/make/dtbs.mk
Jeffrey Townsend 61e3ccf10f - Allow a setup rule
- Clean should be double colon.
2017-02-15 18:37:40 +00:00

27 lines
443 B
Makefile

############################################################
#
# Common DTB build rules.
#
############################################################
include $(ONL)/make/config.mk
ifndef DTS_LIST
DTS_LIST := $(wildcard *.dts)
endif
ifndef DTB_LIST
DTB_LIST := $(patsubst %.dts,%.dtb,$(DTS_LIST))
endif
%.dtb: %.dts
$(ONL)/tools/dtc -I dts -O dtb -o $@ $<
.DEFAULT_GOAL := $(DTB_LIST)
$(DTB_LIST): setup
clean::
rm -rf *.dtb
setup::