1
0
mirror of https://github.com/hsoft/collapseos.git synced 2024-09-07 00:38:45 +10:00
collapseos/recipes/trs80/Makefile
2020-04-28 07:51:41 -04:00

9 lines
152 B
Makefile

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