lab/x1/Makefile
2021-03-04 02:19:24 +09:00

11 lines
153 B
Makefile

CROSS_COMPILE:=arm-linux-gnueabihf-
AS:=$(CROSS_COMPILE)as
.PHONY:
all: return.bin mrc.bin
%.bin: %.S
@$(AS) $<
@./extract.py a.out $@
@rm -f a.out