From: aurel32 Date: Sat, 7 Mar 2009 04:56:06 +0000 (+0000) Subject: pc-bios/Makefile: add a rule to produce dtb files X-Git-Tag: v0.11.0-rc0~1216 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=10aa630aeeef1c76dd9adce86e7c1d90127253f4;p=thirdparty%2Fqemu.git pc-bios/Makefile: add a rule to produce dtb files Signed-off-by: Aurelien Jarno git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6732 c046a42c-6fe2-441c-8c8c-71466251a162 --- diff --git a/pc-bios/Makefile b/pc-bios/Makefile index d9f434ae52c..315288df84e 100644 --- a/pc-bios/Makefile +++ b/pc-bios/Makefile @@ -12,5 +12,8 @@ all: $(TARGETS) %.o: %.S $(CC) $(DEFINES) -c -o $@ $< +%.dtb: %.dts + dtc -I dts -O dtb -o $@ $< + clean: rm -f $(TARGETS) *.o *~