mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-05 22:00:54 +11:00
9 lines
152 B
Makefile
9 lines
152 B
Makefile
TARGET = stage1.bin
|
|
EDIR = ../../emul
|
|
STAGE2 = $(EDIR)/stage2
|
|
|
|
.PHONY: all
|
|
all: $(TARGET)
|
|
$(TARGET): xcomp.fs $(STAGE2)
|
|
cat xcomp.fs | $(STAGE2) > $@
|