diff options
Diffstat (limited to 'dts/makefile')
-rw-r--r-- | dts/makefile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/dts/makefile b/dts/makefile new file mode 100644 index 0000000..5ccaa69 --- /dev/null +++ b/dts/makefile @@ -0,0 +1,17 @@ +DTC := dtc +DTCFLAGS += -I dts +DTCFLAGS += -O dtb +CPP := cpp +CPPFLAGS += -nostdinc +CPPFLAGS += -I include +CPPFLAGS += -undef +CPPFLAGS += -x assembler-with-cpp + +all: am335x-boneblack-uboot-univ.dtb + +%.dts.pre: %.dts + $(CPP) $(CPPFLAGS) $< $@ + +%.dtb: src/%.dts.pre + $(DTC) $(DTCFLAGS) -o $@ $< + |