mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-08 20:58:06 +11:00
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
|
||
|
|