collapseos/recipes/rc2014/sdcard/Makefile

18 lines
309 B
Makefile
Raw Normal View History

TARGETS = os.bin cfsin/helo
TOOLS = ../../../tools
ZASM = $(TOOLS)/zasm.sh
CFSPACK = $(TOOLS)/cfspack/cfspack
2019-05-08 05:26:52 +10:00
.PHONY: all
all: $(TARGETS) sdcard.cfs
2019-05-08 05:26:52 +10:00
os.bin: glue.asm
cfsin/helo: helo.asm
2019-05-08 05:26:52 +10:00
$(TARGETS):
2019-05-21 01:00:14 +10:00
$(ZASM) < $< > $@
$(CFSPACK):
make -C $(TOOLS)/cfspack
sdcard.cfs: cfsin $(CFSPACK)
$(CFSPACK) $< > $@