mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-08 10:28:07 +11:00
9 lines
142 B
Makefile
9 lines
142 B
Makefile
TARGET = os.sms
|
|
ZASM = ../../tools/zasm.sh
|
|
KERNEL = ../../kernel
|
|
|
|
.PHONY: all
|
|
all: $(TARGET)
|
|
$(TARGET): glue.asm
|
|
$(ZASM) $(KERNEL) < $< > $@
|