mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-08 09:48:05 +11:00
b3e865d0fb
Much faster!
14 lines
202 B
Makefile
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
|
|
|