mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-08 09:28:06 +11:00
a7660fba0e
ref #82
14 lines
203 B
Makefile
14 lines
203 B
Makefile
TARGET = os.bin
|
|
BASEDIR = ../..
|
|
EDIR = $(BASEDIR)/emul
|
|
STAGE = $(EDIR)/stage
|
|
|
|
.PHONY: all
|
|
all: $(TARGET)
|
|
$(TARGET): xcomp.fs $(STAGE)
|
|
cat xcomp.fs | $(STAGE) > $@
|
|
|
|
$(STAGE):
|
|
$(MAKE) -C $(EDIR) stage
|
|
|