1
0
mirror of https://github.com/hsoft/collapseos.git synced 2024-09-07 03:28:46 +10:00
collapseos/recipes/rc2014/Makefile
Virgil Dupras 22e990ed89 Parametrize zasm linux bin's include CFS file
... instead of embedding it in the binary itself. Additionally, add a
"zasm.sh" wrapper to faciliate zasm calls on a linux machine.
2019-06-02 15:50:59 -04:00

8 lines
110 B
Makefile

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