1
0
mirror of https://github.com/hsoft/collapseos.git synced 2024-07-26 04:40:19 +10:00
collapseos/recipes/z80mbc2/Makefile
2020-06-26 21:23:13 -04:00

14 lines
202 B
Makefile

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