mirror of
https://github.com/bradgrantham/apple2e.git
synced 2025-01-01 03:31:18 +00:00
96835e2400
On cold-start, force Button0/OpenApple on for a short period This is how cold-start (disk boot) is differentiated from plain RESET Add padding widget that pads another widget on all sides Add drag-and-drop functionality to widgets and manage through GLFW Honor current time through all widget methods Fix character encoding in text_widget (especially for ' ') Add floppy_icon widget that manages drag-and-drop and drive motor (activity) light Later move to vector graphic or bitmap Add floppy eject and insert notification from APPLE2Einterface Add activity notification through APPLE2Einterface Optimize with -O2
15 lines
396 B
Makefile
15 lines
396 B
Makefile
INCFLAGS += -I/opt/local/include
|
|
CXXFLAGS += $(INCFLAGS) -g -Wall --std=c++11 -O2
|
|
LDFLAGS += -L/opt/local/lib
|
|
LDLIBS += -lglfw -lao -framework OpenGL -framework Cocoa -framework IOkit
|
|
|
|
OBJECTS = apple2e.o keyboard.o dis6502.o fake6502.o interface.o
|
|
|
|
all: apple2e
|
|
|
|
apple2e: $(OBJECTS)
|
|
$(CXX) $(CXXFLAGS) $(LDFLAGS) $^ -o $@ $(LDLIBS)
|
|
|
|
clean:
|
|
rm $(OBJECTS)
|