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

11 lines
178 B
Makefile
Raw Normal View History

TARGET = os.bin
ZASM = ../../../tools/zasm.sh
KERNEL = ../../../kernel
APPS = ../../../apps
.PHONY: all
all: $(TARGET)
$(TARGET): glue.asm
$(ZASM) $(KERNEL) $(APPS) < $< > $@