1
0
mirror of https://github.com/hsoft/collapseos.git synced 2024-07-22 22:10:20 +10:00
collapseos/emul/hw/sms/Makefile
Virgil Dupras e1e0676191 emul/hw/sms: add A/B ports and a Genesis pad
This makes the emulator suitable to run the base SMS recipe.
2020-01-10 21:20:44 -05:00

17 lines
312 B
Makefile

EXTOBJS = ../../emul.o ../../libz80/libz80.o
OBJS = sms.o vdp.o port.o pad.o
TARGET = sms
CFLAGS += `pkg-config --cflags xcb`
LDFLAGS += `pkg-config --libs xcb`
.PHONY: all
all: $(TARGET)
$(TARGET): $(OBJS) $(EXTOBJS)
$(CC) $(OBJS) $(EXTOBJS) -o $@ $(LDFLAGS)
.PHONY: clean
clean:
rm -f $(TARGET) $(OBJS)