collapseos/recipes/trs80/Makefile

9 lines
148 B
Makefile
Raw Normal View History

2020-04-28 07:51:41 -04:00
TARGET = stage1.bin
EDIR = ../../emul
2020-05-14 10:55:39 -04:00
STAGE = $(EDIR)/stage
.PHONY: all
2020-04-28 07:51:41 -04:00
all: $(TARGET)
2020-05-14 10:55:39 -04:00
$(TARGET): xcomp.fs $(STAGE)
cat xcomp.fs | $(STAGE) > $@