Files
xemu/pc-bios/Makefile
T

20 lines
236 B
Makefile
Raw Normal View History

2004-02-25 23:54:25 +00: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 $@ $<
2004-02-25 23:54:25 +00:00
clean:
rm -f $(TARGETS) *.o *~