mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-08 10:38:06 +11:00
394f962510
All recipe makesfiles would previously assume a built emul/. Fixes #113
12 lines
181 B
Makefile
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
|