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

10 lines
166 B
Makefile
Raw Normal View History

2019-05-08 05:26:52 +10:00
TARGETS = os.bin sdinit.bin
2019-05-21 01:00:14 +10:00
ZASM = ../../../tools/emul/zasm/zasm
2019-05-08 05:26:52 +10:00
.PHONY: all
all: $(TARGETS)
os.bin: glue.asm
sdinit.bin: sdinit.asm
$(TARGETS):
2019-05-21 01:00:14 +10:00
$(ZASM) < $< > $@