1
0
mirror of https://github.com/hsoft/collapseos.git synced 2024-07-23 13:10:20 +10:00
collapseos/recipes/trs80/Makefile
Virgil Dupras 394f962510 recipe: fix makefiles for fresh clone contexts
All recipe makesfiles would previously assume a built emul/.

Fixes #113
2020-06-11 12:23:59 -04:00

12 lines
181 B
Makefile

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