1
0
mirror of https://github.com/hsoft/collapseos.git synced 2024-09-06 20:28:46 +10:00
collapseos/recipes/trs80/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 > $@