Projet_SETI_RISC-V/riscv-gnu-toolchain/qemu/pc-bios/Makefile
2023-03-06 14:48:14 +01:00

20 lines
236 B
Makefile

#
# 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 *~