1
0
mirror of https://github.com/hsoft/collapseos.git synced 2024-10-07 04:00:58 +11:00
collapseos/emul/rc2014/Makefile

17 lines
255 B
Makefile
Raw Normal View History

EXTOBJS = ../emul.o ../libz80/libz80.o
OBJS = sio.o acia.o sdc.o classic.o
TARGET = classic
2020-01-01 14:03:48 +11:00
.PHONY: all
all: $(TARGET)
../emul.o:
make -C ..
$(TARGET): $(OBJS) $(EXTOBJS)
$(CC) $(OBJS) $(EXTOBJS) -o $@
.PHONY: clean
clean:
rm -f $(TARGET) $(OBJS)