1
0
mirror of https://github.com/hsoft/collapseos.git synced 2024-07-22 11:10:19 +10:00
collapseos/recipes/rc2014/Makefile
Virgil Dupras 9a72f10221 zasm: includes CFS is now built on-the-fly by zasm.sh
This makes for a much more usable zasm linux binary that doesn't have to
be rebuilt every time apps or kernel change.
2019-06-02 19:57:40 -04:00

9 lines
142 B
Makefile

TARGET = os.bin
ZASM = ../../tools/zasm.sh
KERNEL = ../../kernel
.PHONY: all
all: $(TARGET)
$(TARGET): glue.asm
$(ZASM) $(KERNEL) < $< > $@