1
0
mirror of https://github.com/hsoft/collapseos.git synced 2024-09-19 07:48:45 +10:00
collapseos/emul/hw/rc2014/Makefile
Virgil Dupras 1195b0313b emul/rc2014: add support for Zilog SIO
Very very simplistic, but works with our driver.
2020-09-24 21:01:14 -04:00

17 lines
267 B
Makefile

EXTOBJS = ../../emul.o ../../libz80/libz80.o
OBJS = sio.o acia.o sdc.o classic.o
TARGET = classic
.PHONY: all
all: $(TARGET)
../../emul.o:
make -C ../..
$(TARGET): $(OBJS) $(EXTOBJS)
$(CC) $(OBJS) $(EXTOBJS) -o $@
.PHONY: clean
clean:
rm -f $(TARGET) $(OBJS)