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

10 lines
166 B
Makefile

TARGETS = os.bin sdinit.bin
ZASM = ../../../tools/emul/zasm/zasm
.PHONY: all
all: $(TARGETS)
os.bin: glue.asm
sdinit.bin: sdinit.asm
$(TARGETS):
$(ZASM) < $< > $@