mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-08 11:58:05 +11:00
1195b0313b
Very very simplistic, but works with our driver.
17 lines
267 B
Makefile
17 lines
267 B
Makefile
EXTOBJS = ../../emul.o ../../libz80/libz80.o
|
|
OBJS = sio.o 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)
|