1
0
mirror of https://github.com/hsoft/collapseos.git synced 2024-09-07 01:28:46 +10:00
collapseos/recipes/rc2014/eeprom/Makefile

12 lines
210 B
Makefile
Raw Normal View History

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 > $@