mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-08 15:48:06 +11:00
6947fea2a8
It works (in emulation, but soon on real hardware!), but the LIST command is awkward due to tight screen estate...
39 lines
914 B
Makefile
39 lines
914 B
Makefile
TARGETS = forth rc2014 sms ti84
|
|
OBJS = emul.o z80.o
|
|
RC2014_OBJS = $(OBJS) sio.o acia.o sdc.o
|
|
SMS_OBJS = $(OBJS) sms_vdp.o sms_ports.o sms_pad.o ps2_kbd.o sdc.o
|
|
TI84_OBJS = $(OBJS) t6a04.o ti84_kbd.o
|
|
CDIR = ../../cvm
|
|
STAGE = $(CDIR)/stage
|
|
BLKFS = $(CDIR)/blkfs
|
|
|
|
.PHONY: all
|
|
all: $(TARGETS)
|
|
|
|
forth: forth.c $(OBJS) $(BLKFS)
|
|
$(CC) forth.c $(OBJS) -lncurses -o $@
|
|
|
|
rc2014: rc2014.c $(RC2014_OBJS)
|
|
$(CC) rc2014.c $(RC2014_OBJS) -o $@
|
|
|
|
sms: sms.c $(SMS_OBJS)
|
|
$(CC) sms.c $(SMS_OBJS) -o $@ `pkg-config --cflags --libs xcb`
|
|
|
|
ti84: ti84.c $(TI84_OBJS)
|
|
$(CC) ti84.c $(TI84_OBJS) -o $@ `pkg-config --cflags --libs xcb`
|
|
|
|
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
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -f $(TARGETS) *.o *.bin
|