mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-08 08:08:06 +11:00
11 lines
206 B
Makefile
11 lines
206 B
Makefile
|
TARGET = os.bin
|
||
|
BASEDIR = ../..
|
||
|
ZASM = $(BASEDIR)/emul/zasm/zasm
|
||
|
KERNEL = $(BASEDIR)/kernel
|
||
|
APPS = $(BASEDIR)/apps
|
||
|
|
||
|
.PHONY: all
|
||
|
all: $(TARGET)
|
||
|
$(TARGET): glue.asm
|
||
|
$(ZASM) $(KERNEL) $(APPS) < glue.asm > $@
|