]> Shamusworld >> Repos - apple2/blob - Makefile
8f36aecd52cb7cb4f615fc3dcbfc767d8795f3cf
[apple2] / Makefile
1 #
2 # Unified Makefile for Apple 2 SDL
3 #
4 # by James Hammons
5 # (C) 2005 Underground Software
6 # This software is licensed under the GPL v2
7 #
8
9 FIND = find
10 FINDSDL2 := $(shell which $(CROSS)sdl2-config 2> /dev/null)
11
12 # Figure out which system we're compiling for, and set the appropriate variables
13
14 ifeq "$(CROSS)" ""
15 OSTYPE   := $(shell uname -a)
16
17 # Win32
18 ifeq "$(findstring Msys,$(OSTYPE))" "Msys"
19
20 SYSTYPE    = __GCCWIN32__
21 EXESUFFIX  = .exe
22 ICON       = obj/icon.o
23 SDLLIBTYPE = --libs
24 MSG        = Win32 on MinGW
25
26 # Should catch both 'darwin' and 'darwin7.0'
27 else ifeq "$(findstring Darwin,$(OSTYPE))" "Darwin"
28
29 SYSTYPE    = __GCCUNIX__ -D_OSX_
30 EXESUFFIX  =
31 ICON       =
32 SDLLIBTYPE = --static-libs
33 MSG        = Mac OS X
34
35 # *nix
36 else ifeq "$(findstring Linux,$(OSTYPE))" "Linux"
37
38 SYSTYPE    = __GCCUNIX__
39 EXESUFFIX  =
40 ICON       =
41 SDLLIBTYPE = --libs
42 MSG        = generic Unix/Linux
43
44 # Throw error, unknown OS
45 else
46
47 $(error OS TYPE UNDETECTED)
48
49 endif
50 # Cross compile using MXE under Linux host
51 else
52
53 SYSTYPE    = __GCCWIN32__
54 EXESUFFIX  = .exe
55 ICON       = obj/icon.o
56 SDLLIBTYPE = --libs
57 MSG        = Win32 under MXE (cross compile)
58
59 endif
60
61 CC         = $(CROSS)gcc
62 LD         = $(CROSS)gcc
63 TARGET     = apple2
64
65 SDL_CFLAGS = `$(CROSS)sdl2-config --cflags`
66 SDL_LIBS   = `$(CROSS)sdl2-config $(SDLLIBTYPE)`
67 DEFINES    = -D$(SYSTYPE)
68 GCC_DEPS   = -MMD
69
70 # Note that we use optimization level 2 instead of 3--3 doesn't seem to gain much over 2
71 #CFLAGS   = -MMD -Wall -Wno-switch -O2 -D$(SYSTYPE) -ffast-math -fomit-frame-pointer `sdl2-config --cflags`
72 #CPPFLAGS = -MMD -Wall -Wno-switch -Wno-non-virtual-dtor -O2 -D$(SYSTYPE) \
73 # No optimization and w/gcov flags, so that we get an accurate picture from gcov
74 #CFLAGS   = -MMD -Wall -Wno-switch -D$(SYSTYPE) \
75 #               -ffast-math -fomit-frame-pointer `sdl2-config --cflags` -fprofile-arcs -ftest-coverage
76 #CPPFLAGS = -MMD -Wall -Wno-switch -Wno-non-virtual-dtor -D$(SYSTYPE) \
77 #               -ffast-math -fomit-frame-pointer `sdl2-config --cflags` -fprofile-arcs -ftest-coverage
78 # No optimization for profiling with gprof...
79 #CFLAGS   = -MMD -Wall -Wno-switch -D$(SYSTYPE) \
80 #               -ffast-math `sdl2-config --cflags` -pg -g
81 #CPPFLAGS = -MMD -Wall -Wno-switch -Wno-non-virtual-dtor -D$(SYSTYPE) \
82 #               -ffast-math `sdl2-config --cflags` -pg -g
83 #               -fomit-frame-pointer `sdl2-config --cflags` -g
84 #               -fomit-frame-pointer `sdl2-config --cflags` -DLOG_UNMAPPED_MEMORY_ACCESSES
85 CFLAGS   = $(GCC_DEPS) -Wall -Wno-switch $(DEFINES) -ffast-math $(SDL_CFLAGS) -pg -g
86 CPPFLAGS = $(GCC_DEPS) -Wall -Wno-switch -Wno-non-virtual-dtor $(DEFINES) \
87                 -ffast-math $(SDL_CFLAGS) -pg -g
88
89 LDFLAGS =
90
91 #LIBS = -L/usr/local/lib -L/usr/lib `sdl2-config $(SDLLIBTYPE)` -lstdc++ -lz $(GLLIB)
92 # Link in the gcov library (for profiling purposes)
93 #LIBS = -L/usr/local/lib -L/usr/lib `sdl2-config $(SDLLIBTYPE)` -lstdc++ -lz $(GLLIB) -lgcov
94 # Link in the gprof lib
95 #LIBS = -L/usr/local/lib -L/usr/lib `sdl2-config $(SDLLIBTYPE)` -lstdc++ -lz $(GLLIB) -pg
96 #LIBS = -L/usr/local/lib -L/usr/lib $(SDL_LIBS) -lstdc++ -lz $(GLLIB) -pg
97 LIBS = $(SDL_LIBS) -lstdc++ -lz $(GLLIB) -pg
98
99 #INCS = -I. -I./src -I/usr/local/include -I/usr/include
100 INCS = -I. -I./src
101
102 OBJS = \
103         obj/diskselector.o    \
104         obj/font10pt.o        \
105         obj/font12pt.o        \
106         obj/font14pt.o        \
107         obj/gui.o             \
108                           \
109         obj/applevideo.o      \
110         obj/ay8910.o          \
111         obj/charset.o         \
112         obj/dis65c02.o        \
113         obj/firmware.o        \
114         obj/floppy.o          \
115         obj/log.o             \
116         obj/mmu.o             \
117         obj/sdlemu_config.o   \
118         obj/settings.o        \
119         obj/sound.o           \
120         obj/timing.o          \
121         obj/v65c02.o          \
122         obj/video.o           \
123         obj/apple2.o          \
124         $(ICON)
125
126 #foooked:
127 #       obj/button.o          \
128         obj/diskwindow.o      \
129         obj/draggablewindow.o \
130         obj/draggablewindow2.o \
131         obj/element.o         \
132         obj/guimisc.o         \
133         obj/menu.o            \
134         obj/text.o            \
135         obj/textedit.o        \
136         obj/window.o          \
137
138 all: checkenv message obj $(TARGET)$(EXESUFFIX)
139         @echo
140         @echo -e "\033[01;33m***\033[00;32m Looks like it compiled OK... Give it a whirl!\033[00m"
141
142 # Check the compilation environment, barf if not appropriate
143
144 checkenv:
145         @echo
146         @echo -en "\033[01;33m***\033[00;32m Checking compilation environment... \033[00m"
147 ifeq "$(FINDSDL2)" ""
148         @echo
149         @echo
150         @echo -e "\033[01;33mIt seems that you don't have the SDL 2 development libraries installed. If you"
151         @echo -e "have installed them, make sure that the sdl2-config file is somewhere in your"
152         @echo -e "path and is executable.\033[00m"
153         @echo
154 #Is there a better way to break out of the makefile?
155         @false;
156 #       @break
157 # YES! But ignores all the echo's above... :-/
158 #$(error SDL2 MISSING)
159
160 else
161         @echo -e "\033[01;37mOK\033[00m"
162 endif
163
164 message:
165         @echo
166         @echo -e "\033[01;33m***\033[00;32m Building Apple2 SDL for $(MSG)...\033[00m"
167         @echo
168
169 clean:
170         @echo -en "\033[01;33m***\033[00;32m Cleaning out the garbage...\033[00m"
171         @rm -rf obj
172         @rm -f ./$(TARGET)$(EXESUFFIX)
173         @echo -e "\033[01;37mdone!\033[00m"
174
175 obj:
176         @mkdir obj
177
178 # This is only done for Win32 at the moment...
179
180 ifneq "" "$(ICON)"
181 $(ICON): res/$(TARGET).rc res/$(TARGET).ico
182         @echo -e "\033[01;33m***\033[00;32m Processing icon...\033[00m"
183         @$(CROSS)windres -i res/$(TARGET).rc -o $(ICON) --include-dir=./res
184 endif
185
186 obj/%.o: src/%.c
187         @echo -e "\033[01;33m***\033[00;32m Compiling $<...\033[00m"
188         @$(CC) $(CFLAGS) $(INCS) -c $< -o $@
189
190 obj/%.o: src/%.cpp
191         @echo -e "\033[01;33m***\033[00;32m Compiling $<...\033[00m"
192         @$(CC) $(CPPFLAGS) $(INCS) -c $< -o $@
193
194 #GUI compilation...
195 obj/%.o: src/gui/%.cpp
196         @echo -e "\033[01;33m***\033[00;32m Compiling $<...\033[00m"
197         @$(CC) $(CPPFLAGS) $(INCS) -c $< -o $@
198
199 $(TARGET)$(EXESUFFIX): $(OBJS)
200         @echo -e "\033[01;33m***\033[00;32m Linking it all together...\033[00m"
201         $(LD) $(LDFLAGS) -o $@ $(OBJS) $(LIBS)
202 #       strip --strip-all vj$(EXESUFFIX)
203 #       upx -9 vj$(EXESUFFIX)
204
205 statistics:
206         @echo -n "Lines in source files: "
207         @-$(FIND) ./src -name "*.cpp" | xargs cat | wc -l
208         @echo -n "Lines in header files: "
209         @-$(FIND) ./src -name "*.h" | xargs cat | wc -l
210
211 # Pull in dependencies autogenerated by gcc's -MMD switch
212 # The "-" in front in there just in case they haven't been created yet
213
214 -include obj/*.d
215