mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-05 17:50:54 +11:00
9 lines
144 B
Makefile
9 lines
144 B
Makefile
TARGET = os.bin
|
|
EDIR = ../../emul
|
|
STAGE = $(EDIR)/stage
|
|
|
|
.PHONY: all
|
|
all: $(TARGET)
|
|
$(TARGET): xcomp.fs $(STAGE)
|
|
cat xcomp.fs | $(STAGE) > $@
|