collapseos/emul/Makefile

68 lines
1.3 KiB
Makefile
Raw Normal View History

TARGETS = forth stage2
OBJS = emul.o libz80/libz80.o
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: $(BIN2C) $(BLKUNPACK)
2020-04-15 04:25:14 +10:00
$(BIN2C): $(BLKPACK)
$(BLKUNPACK): $(BLKPACK)
stage0-bin.h: $(BIN2C)
$(BIN2C) KERNEL < stage0.bin > $@
2020-03-10 13:26:02 +11:00
stage1: stage.c $(OBJS) stage0-bin.h
$(CC) stage.c $(OBJS) -o $@
stage1dbg: stage.c $(OBJS) stage0-bin.h
$(CC) -DDEBUG stage.c $(OBJS) -o $@
stage1.bin: stage1.fs stage1
./stage1 < stage1.fs > $@
stage1-bin.h: stage1.bin $(BIN2C)
$(BIN2C) KERNEL < stage1.bin > $@
stage2: stage.c $(OBJS) stage1-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) stage1-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 > stage0.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 stage{1,2}.bin blkfs
$(MAKE) -C ../tools clean