1
0
mirror of https://github.com/hsoft/collapseos.git synced 2024-07-23 02:30:19 +10:00
collapseos/recipes/rc2014/Makefile

10 lines
168 B
Makefile
Raw Normal View History

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