bradgrantham-apple2e/Makefile
Brad Grantham c52cb2939e Fix CX00 ROMs, implement alternate 6502
Add fake6502.c as alternate CPU implementation
Set up all regions in CX00 with softswitches according to my understanding of "Inside the Apple //e"
2016-11-11 15:18:08 -08:00

12 lines
211 B
Makefile

CXXFLAGS = -g -O -Wall --std=c++11
OBJECTS = apple2e.o keyboard.o dis6502.o fake6502.o
all: apple2e
apple2e: $(OBJECTS)
$(CXX) $(CXXFLAGS) $(LDFLAGS) $^ -o $@ $(LDLIBS)
clean:
rm $(OBJECTS)