collapseos/emul/Makefile

84 lines
2.3 KiB
Makefile
Raw Normal View History

2020-04-14 09:25:28 +10:00
TARGETS = forth/forth
# Those Forth source files are in a particular order
BOOTSRCS = ./forth/conf.fs \
../forth/xcomp.fs \
./forth/xcomp.fs \
../forth/boot.fs \
../forth/z80c.fs \
../forth/icore.fs \
./forth/xstop.fs
FORTHSRCS = core.fs cmp.fs print.fs str.fs parse.fs readln.fs fmt.fs z80a.fs \
2020-04-14 23:05:43 +10:00
link.fs blk.fs
FORTHSRC_PATHS = ${FORTHSRCS:%=../forth/%} 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
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)
# z80c.bin is not in the prerequisites because it's a bootstrap
# binary that should be updated manually through make updatebootstrap.
forth/forth0.bin: $(SLATEST)
cp forth/z80c.bin $@
$(SLATEST) $@
cat forth/pre.fs forth/emul.fs >> $@
2020-03-10 13:26:02 +11:00
forth/forth0-bin.h: forth/forth0.bin $(BIN2C)
$(BIN2C) KERNEL < forth/forth0.bin | tee $@ > /dev/null
2020-03-10 13:26:02 +11:00
forth/stage1: forth/stage.c $(OBJS) forth/forth0-bin.h
$(CC) forth/stage.c $(OBJS) -o $@
forth/stage1dbg: forth/stage.c $(OBJS) forth/forth0-bin.h
$(CC) -DDEBUG forth/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.
2020-03-25 12:13:02 +11:00
forth/core.bin: $(FORTHSRC_PATHS) forth/stage1
cat $(FORTHSRC_PATHS) ./forth/stop.fs | $(STRIPFC) | ./forth/stage1 > $@
2020-03-25 12:13:02 +11:00
forth/forth1.bin: forth/core.bin $(SLATEST)
cat forth/z80c.bin forth/core.bin > $@
$(SLATEST) $@
forth/forth1-bin.h: forth/forth1.bin $(BIN2C)
$(BIN2C) KERNEL < forth/forth1.bin > $@
forth/stage2: forth/stage.c $(OBJS) forth/forth1-bin.h
$(CC) -DSTAGE2 forth/stage.c $(OBJS) -o $@
2020-04-14 23:05:43 +10:00
blkfs: $(BLKPACK)
$(BLKPACK) ../blk > $@
forth/forth: forth/forth.c $(OBJS) forth/forth1-bin.h blkfs
2020-03-10 13:26:02 +11:00
$(CC) forth/forth.c $(OBJS) -o $@
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: forth/stage2
cat $(BOOTSRCS) | ./forth/stage2 > ./forth/z80c.bin
2019-05-10 02:58:41 +10:00
.PHONY: clean
clean:
2020-04-15 04:25:14 +10:00
rm -f $(TARGETS) emul.o forth/*-bin.h forth/forth?.bin blkfs
$(MAKE) -C ../tools clean