collapseos/recipes/trs80/Makefile

12 lines
180 B
Makefile
Raw Normal View History

TARGET = os.bin
CDIR = ../../cvm
STAGE = $(CDIR)/stage
.PHONY: all
2020-04-28 21:51:41 +10:00
all: $(TARGET)
2020-05-15 00:55:39 +10:00
$(TARGET): xcomp.fs $(STAGE)
cat xcomp.fs | $(STAGE) > $@
$(STAGE):
$(MAKE) -C $(CDIR) stage