mirror of
https://github.com/bradgrantham/apple2e.git
synced 2024-11-18 20:06:10 +00:00
24853393ea
"clean" Makefile target Rearrange DEBUG constants so least bits trigger output with most impact New "implemented" bool SoftSwitch Add page2 handling to textport (untested) Separate out "region" encapsulating address start and end for convenience Factor out "set_flags()" for most common "flag_change()" sequences Move comment with instruction opcode onto case for compactness Remove old disassembly in favor of open source disassembly
12 lines
200 B
Makefile
12 lines
200 B
Makefile
CXXFLAGS = -g -O -Wall --std=c++11
|
|
|
|
OBJECTS = apple2e.o keyboard.o dis6502.o
|
|
|
|
all: apple2e
|
|
|
|
apple2e: $(OBJECTS)
|
|
$(CXX) $(CXXFLAGS) $(LDFLAGS) $^ -o $@ $(LDLIBS)
|
|
|
|
clean:
|
|
rm $(OBJECTS)
|