1
0
mirror of https://github.com/hsoft/collapseos.git synced 2024-07-22 07:20:20 +10:00
collapseos/emul/hw/rc2014/Makefile
Virgil Dupras ae470397d7 emul/hw/rc2014: add sdc emulator (wip)
so far, it goes through initialization with the rc2014/sdcard recipe.
2020-04-17 15:11:32 -04:00

14 lines
231 B
Makefile

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