mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-08 13:28:05 +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) < $< > $@
|
|
|