mirror of
https://github.com/bradgrantham/apple2e.git
synced 2024-11-18 20:06:10 +00:00
c52cb2939e
Add fake6502.c as alternate CPU implementation Set up all regions in CX00 with softswitches according to my understanding of "Inside the Apple //e"
12 lines
211 B
Makefile
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)
|