1
0
mirror of https://github.com/hsoft/collapseos.git synced 2024-10-05 08:50:54 +10:00
collapseos/emul/rc2014/Makefile
2020-10-24 14:37:19 -04:00

17 lines
255 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)