Mirror of CollapseOS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
255B

  1. EXTOBJS = ../emul.o ../libz80/libz80.o
  2. OBJS = sio.o acia.o sdc.o classic.o
  3. TARGET = classic
  4. .PHONY: all
  5. all: $(TARGET)
  6. ../emul.o:
  7. make -C ..
  8. $(TARGET): $(OBJS) $(EXTOBJS)
  9. $(CC) $(OBJS) $(EXTOBJS) -o $@
  10. .PHONY: clean
  11. clean:
  12. rm -f $(TARGET) $(OBJS)