mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-08 13:28:05 +11:00
10 lines
166 B
Makefile
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) < $< > $@
|