mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-08 16:38:06 +11:00
8 lines
117 B
Makefile
8 lines
117 B
Makefile
TARGET = os.bin
|
|
ZASM = ../../tools/emul/zasm/zasm
|
|
|
|
.PHONY: all
|
|
all: $(TARGET)
|
|
$(TARGET): glue.asm
|
|
$(ZASM) < $< > $@
|