diff options
author | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2009-03-07 04:56:06 +0000 |
---|---|---|
committer | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2009-03-07 04:56:06 +0000 |
commit | 10aa630aeeef1c76dd9adce86e7c1d90127253f4 (patch) | |
tree | 54705c22a8a70ed2dbc50f2335b3c13ecf006fe3 /pc-bios/Makefile | |
parent | 274b6fcc78401b6300bf86f9b656c13fd7e63619 (diff) |
pc-bios/Makefile: add a rule to produce dtb files
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6732 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'pc-bios/Makefile')
-rw-r--r-- | pc-bios/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pc-bios/Makefile b/pc-bios/Makefile index d9f434ae52..315288df84 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 *~ |