qemu/pc-bios/Makefile

20 lines
236 B
Makefile
Raw Normal View History

2022-11-03 14:19:34 +08:00
#
# 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 *~