collapseos/recipes/trs80/Makefile

9 lines
152 B
Makefile
Raw Normal View History

2020-04-28 21:51:41 +10:00
TARGET = stage1.bin
EDIR = ../../emul
STAGE2 = $(EDIR)/stage2
.PHONY: all
2020-04-28 21:51:41 +10:00
all: $(TARGET)
$(TARGET): xcomp.fs $(STAGE2)
cat xcomp.fs | $(STAGE2) > $@