1
0
mirror of https://github.com/hsoft/collapseos.git synced 2024-09-17 04:38:45 +10:00
collapseos/recipes/rc2014/basic/Makefile
2019-11-23 21:22:31 -05:00

11 lines
178 B
Makefile

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