mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-08 10:08:06 +11:00
11 lines
178 B
Makefile
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) < $< > $@
|
||
|
|