1
0
mirror of https://github.com/hsoft/collapseos.git synced 2024-07-22 07:50:20 +10:00
collapseos/emul/hw/rc2014/Makefile
2020-06-30 10:24:12 -04:00

17 lines
261 B
Makefile

EXTOBJS = ../../emul.o ../../libz80/libz80.o
OBJS = 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)