diff options
Diffstat (limited to 'qemu/pc-bios/Makefile')
-rw-r--r-- | qemu/pc-bios/Makefile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/qemu/pc-bios/Makefile b/qemu/pc-bios/Makefile new file mode 100644 index 000000000..315288df8 --- /dev/null +++ b/qemu/pc-bios/Makefile @@ -0,0 +1,19 @@ +# +# NOTE: only compilable with x86 cross compile tools +# +include ../config-host.mak + +DEFINES= + +TARGETS= + +all: $(TARGETS) + +%.o: %.S + $(CC) $(DEFINES) -c -o $@ $< + +%.dtb: %.dts + dtc -I dts -O dtb -o $@ $< + +clean: + rm -f $(TARGETS) *.o *~ |