collapseos/recipes/trs80/Makefile
2020-05-14 10:55:39 -04:00

9 lines
148 B
Makefile

TARGET = stage1.bin
EDIR = ../../emul
STAGE = $(EDIR)/stage
.PHONY: all
all: $(TARGET)
$(TARGET): xcomp.fs $(STAGE)
cat xcomp.fs | $(STAGE) > $@