mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-06 06:40:55 +11:00
9a72f10221
This makes for a much more usable zasm linux binary that doesn't have to be rebuilt every time apps or kernel change.
9 lines
142 B
Makefile
9 lines
142 B
Makefile
TARGET = os.bin
|
|
ZASM = ../../tools/zasm.sh
|
|
KERNEL = ../../kernel
|
|
|
|
.PHONY: all
|
|
all: $(TARGET)
|
|
$(TARGET): glue.asm
|
|
$(ZASM) $(KERNEL) < $< > $@
|