collapseos/emul/Makefile

87 lines
2.0 KiB
Makefile
Raw Normal View History

TARGETS = forth stage2
# Those Forth source files are in a particular order
FORTHSRCS = core.fs cmp.fs print.fs parse.fs readln.fs fmt.fs blk.fs
FORTHSRC_PATHS = ${FORTHSRCS:%=../forth/%} run.fs
OBJS = emul.o libz80/libz80.o
SLATEST = ../tools/slatest
2020-04-05 01:27:21 +11:00
STRIPFC = ../tools/stripfc
2020-04-14 23:05:43 +10:00
BIN2C = ../tools/bin2c
BLKPACK = ../tools/blkpack
BLKUNPACK = ../tools/blkunpack
2019-05-10 04:09:40 +10:00
2019-05-10 02:58:41 +10:00
.PHONY: all
all: $(TARGETS)
2019-05-10 02:58:41 +10:00
2020-04-14 23:05:43 +10:00
$(BLKPACK):
$(MAKE) -C ../tools
2020-04-15 23:01:09 +10:00
.PHONY: $(STRIPFC) $(SLATEST) $(BIN2C)
2020-04-15 04:25:14 +10:00
$(STRIPFC): $(BLKPACK)
$(SLATEST): $(BLKPACK)
$(BIN2C): $(BLKPACK)
$(BLKUNPACK): $(BLKPACK)
# z80c.bin is not in the prerequisites because it's a bootstrap
# binary that should be updated manually through make updatebootstrap.
forth0.bin:
cp z80c.bin $@
cat stage1.fs >> $@
2020-03-10 13:26:02 +11:00
forth0-bin.h: forth0.bin $(BIN2C)
$(BIN2C) KERNEL < forth0.bin | tee $@ > /dev/null
2020-03-10 13:26:02 +11:00
stage1: stage.c $(OBJS) forth0-bin.h
$(CC) stage.c $(OBJS) -o $@
stage1dbg: stage.c $(OBJS) forth0-bin.h
$(CC) -DDEBUG stage.c $(OBJS) -o $@
2020-04-05 01:27:21 +11:00
# We don't really need to use stripfc, but we do it anyway to test that we
# don't mistakenly break our code with that tool. It's easier to debug here.
core.bin: $(FORTHSRC_PATHS) stage1
cat $(FORTHSRC_PATHS) stop.fs | $(STRIPFC) | ./stage1 > $@
2020-03-25 12:13:02 +11:00
forth1.bin: core.bin $(SLATEST)
cat z80c.bin core.bin > $@
$(SLATEST) $@
forth1-bin.h: forth1.bin $(BIN2C)
$(BIN2C) KERNEL < forth1.bin > $@
stage2: stage.c $(OBJS) forth1-bin.h blkfs-bin.h
$(CC) -DSTAGE2 stage.c $(OBJS) -o $@
2020-04-14 23:05:43 +10:00
blkfs: $(BLKPACK)
$(BLKPACK) ../blk > $@
blkfs-bin.h: blkfs $(BIN2C)
$(BIN2C) BLKFS < blkfs > $@
forth: forth.c $(OBJS) forth1-bin.h blkfs-bin.h
$(CC) forth.c $(OBJS) -o $@
2020-03-10 13:26:02 +11:00
2019-05-10 02:58:41 +10:00
libz80/libz80.o: libz80/z80.c
2019-07-12 11:21:54 +10:00
$(MAKE) -C libz80/codegen opcodes
2019-05-20 22:20:00 +10:00
$(CC) -Wall -ansi -g -c -o libz80/libz80.o libz80/z80.c
2019-05-10 02:58:41 +10:00
emul.o: emul.c
$(CC) -c -o emul.o emul.c
.PHONY: updatebootstrap
updatebootstrap: stage2
cat xcomp.fs | ./stage2 > z80c.bin
.PHONY: pack
pack:
rm blkfs && $(MAKE) blkfs
.PHONY: unpack
unpack:
$(BLKUNPACK) ../blk < blkfs
2019-05-10 02:58:41 +10:00
.PHONY: clean
clean:
rm -f $(TARGETS) emul.o *-bin.h forth?.bin blkfs
$(MAKE) -C ../tools clean