collapseos/emul/Makefile

31 lines
652 B
Makefile
Raw Normal View History

TARGETS = forth
OBJS = emul.o libz80/libz80.o
CDIR = ../cvm
STAGE = $(CDIR)/stage
BLKFS = $(CDIR)/blkfs
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
forth: forth.c $(OBJS) $(BLKFS)
2020-05-24 00:08:40 +10:00
$(CC) forth.c $(OBJS) -lncurses -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
$(CC) -Wall -std=c89 -g -c -o libz80/libz80.o libz80/z80.c
2019-05-10 02:58:41 +10:00
emul.o: emul.c forth.bin $(BLKFS)
$(CC) -DFBIN_PATH=\"`pwd`/forth.bin\" -DBLKFS_PATH=\"`pwd`/$(BLKFS)\" -c -o emul.o emul.c
forth.bin: xcomp.fs $(STAGE) $(BLKFS)
$(CDIR)/stage < xcomp.fs > $@
$(BLKFS): $(STAGE)
$(STAGE):
$(MAKE) -C $(CDIR) all
2019-05-10 02:58:41 +10:00
.PHONY: clean
clean:
rm -f $(TARGETS) emul.o *.bin libz80/libz80.o