1
0
mirror of https://github.com/hsoft/collapseos.git synced 2024-09-07 09:58:45 +10:00
collapseos/recipes/rc2014/sdcard/Makefile

17 lines
284 B
Makefile

TARGETS = os.bin
TOOLS = ../../../tools
ZASM = $(TOOLS)/emul/zasm/zasm
CFSPACK = $(TOOLS)/cfspack/cfspack
.PHONY: all
all: $(TARGETS) sdcard.cfs
os.bin: glue.asm
$(TARGETS):
$(ZASM) < $< > $@
$(CFSPACK):
make -C $(TOOLS)/cfspack
sdcard.cfs: cfsin $(CFSPACK)
$(CFSPACK) $< > $@