]> Shamusworld >> Repos - apple2/blob - Makefile
Set eol-style to native to keep things sane.
[apple2] / Makefile
1 #
2 # Unified Makefile for Apple 2 SDL
3 #
4 # by James L. Hammons
5 # (C) 2005 Underground Software
6 # This software is licensed under the GPL v2
7 #
8
9 # Figure out which system we're compiling for, and set the appropriate variables
10
11 ifeq "$(OSTYPE)" "msys"                                                 # Win32
12
13 SYSTYPE    = __GCCWIN32__
14 EXESUFFIX  = .exe
15 GLLIB      = -lopengl32
16 ICON       = obj/icon.o
17 SDLLIBTYPE = --libs
18 MSG        = Win32 on MinGW
19
20 else
21 #ifeq "$(OSTYPE)" "darwin"
22 ifeq "darwin" "$(findstring darwin,$(OSTYPE))"  # Should catch both 'darwin' and 'darwin7.0'
23
24 SYSTYPE    = __GCCUNIX__ -D_OSX_
25 EXESUFFIX  =
26 GLLIB      =
27 ICON       =
28 SDLLIBTYPE = --static-libs
29 MSG        = Mac OS X
30
31 else                                                                                    # *nix
32
33 SYSTYPE    = __GCCUNIX__
34 EXESUFFIX  =
35 GLLIB      = -lGL
36 ICON       =
37 SDLLIBTYPE = --libs
38 MSG        = generic Unix/Linux
39
40 endif
41 endif
42
43 CC         = gcc
44 LD         = gcc
45 TARGET     = apple2
46
47 # Note that we use optimization level 2 instead of 3--3 doesn't seem to gain much over 2
48 #CFLAGS   = -MMD -Wall -Wno-switch -O2 -D$(SYSTYPE) -ffast-math -fomit-frame-pointer `sdl-config --cflags`
49 #CPPFLAGS = -MMD -Wall -Wno-switch -Wno-non-virtual-dtor -O2 -D$(SYSTYPE) \
50 # No optimization and w/gcov flags, so that we get an accurate picture from gcov
51 #CFLAGS   = -MMD -Wall -Wno-switch -D$(SYSTYPE) \
52 #               -ffast-math -fomit-frame-pointer `sdl-config --cflags` -fprofile-arcs -ftest-coverage
53 #CPPFLAGS = -MMD -Wall -Wno-switch -Wno-non-virtual-dtor -D$(SYSTYPE) \
54 #               -ffast-math -fomit-frame-pointer `sdl-config --cflags` -fprofile-arcs -ftest-coverage
55 # No optimization for profiling with gprof...
56 CFLAGS   = -MMD -Wall -Wno-switch -D$(SYSTYPE) \
57                 -ffast-math `sdl-config --cflags` -pg
58 CPPFLAGS = -MMD -Wall -Wno-switch -Wno-non-virtual-dtor -D$(SYSTYPE) \
59                 -ffast-math `sdl-config --cflags` -pg
60 #               -fomit-frame-pointer `sdl-config --cflags` -g
61 #               -fomit-frame-pointer `sdl-config --cflags` -DLOG_UNMAPPED_MEMORY_ACCESSES
62
63 LDFLAGS =
64
65 #LIBS = -L/usr/local/lib -L/usr/lib `sdl-config $(SDLLIBTYPE)` -lstdc++ -lz $(GLLIB)
66 # Link in the gcov library (for profiling purposes)
67 #LIBS = -L/usr/local/lib -L/usr/lib `sdl-config $(SDLLIBTYPE)` -lstdc++ -lz $(GLLIB) -lgcov
68 # Link in the gprof lib
69 LIBS = -L/usr/local/lib -L/usr/lib `sdl-config $(SDLLIBTYPE)` -lstdc++ -lz $(GLLIB) -pg
70
71 INCS = -I. -I./src -I/usr/local/include -I/usr/include
72
73 OBJS = \
74         obj/button.o          \
75         obj/draggablewindow.o \
76         obj/element.o         \
77         obj/gui.o             \
78         obj/guimisc.o         \
79         obj/menu.o            \
80         obj/textedit.o        \
81         obj/window.o          \
82                           \
83         obj/applevideo.o      \
84         obj/ay8910.o          \
85         obj/dis65c02.o        \
86         obj/floppy.o          \
87         obj/log.o             \
88         obj/sdlemu_config.o   \
89         obj/sdlemu_opengl.o   \
90         obj/settings.o        \
91         obj/sound.o           \
92         obj/timing.o          \
93         obj/v65c02.o          \
94         obj/video.o           \
95         obj/apple2.o          \
96         $(ICON)
97
98 all: checkenv message obj $(TARGET)$(EXESUFFIX)
99         @echo
100         @echo "*** Looks like it compiled OK... Give it a whirl!"
101
102 # Check the compilation environment, barf if not appropriate
103
104 checkenv:
105         @echo
106         @echo -n "*** Checking compilation environment... "
107 ifeq "" "$(shell which sdl-config)"
108         @echo
109         @echo
110         @echo "It seems that you don't have the SDL development libraries installed. If you"
111         @echo "have installed them, make sure that the sdl-config file is somewhere in your"
112         @echo "path and is executable."
113         @echo
114 #Is there a better way to break out of the makefile?
115         @break
116 else
117         @echo "OK"
118 endif
119
120 message:
121         @echo
122         @echo "*** Building Apple 2 SDL for $(MSG)..."
123         @echo
124
125 clean:
126         @echo -n "*** Cleaning out the garbage..."
127         @rm -rf obj
128         @rm -f ./$(TARGET)$(EXESUFFIX)
129         @echo "done!"
130
131 obj:
132         @mkdir obj
133
134 # This is only done for Win32 at the moment...
135
136 ifneq "" "$(ICON)"
137 $(ICON): res/$(TARGET).rc res/$(TARGET).ico
138         @echo "*** Processing icon..."
139         @windres -i res/$(TARGET).rc -o $(ICON) --include-dir=./res
140 endif
141
142 obj/%.o: src/%.c
143         @echo "*** Compiling $<..."
144         @$(CC) $(CFLAGS) $(INCS) -c $< -o $@
145
146 obj/%.o: src/%.cpp
147         @echo "*** Compiling $<..."
148         @$(CC) $(CPPFLAGS) $(INCS) -c $< -o $@
149
150 #GUI compilation...
151 obj/%.o: src/gui/%.cpp
152         @echo "*** Compiling $<..."
153         @$(CC) $(CPPFLAGS) $(INCS) -c $< -o $@
154
155 $(TARGET)$(EXESUFFIX): $(OBJS)
156         @echo "*** Linking it all together..."
157         @$(LD) $(LDFLAGS) -o $@ $(OBJS) $(LIBS)
158 #       strip --strip-all vj$(EXESUFFIX)
159 #       upx -9 vj$(EXESUFFIX)
160
161 # Pull in dependencies autogenerated by gcc's -MMD switch
162 # The "-" in front in there just in case they haven't been created yet
163
164 -include obj/*.d