1
0
mirror of https://github.com/hsoft/collapseos.git synced 2024-07-22 17:10:19 +10:00
collapseos/recipes/sms/Makefile

11 lines
206 B
Makefile
Raw Normal View History

TARGET = os.sms
BASEDIR = ../..
ZASM = $(BASEDIR)/emul/zasm/zasm
KERNEL = $(BASEDIR)/kernel
APPS = $(BASEDIR)/apps
.PHONY: all
all: $(TARGET)
$(TARGET): glue.asm
$(ZASM) $(KERNEL) $(APPS) < glue.asm > $@