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

14 lines
225 B
Makefile
Raw Normal View History

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