]> Shamusworld >> Repos - apple2/blob - Makefile
Beginnings of disk image selector.
[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
98 #INCS = -I. -I./src -I/usr/local/include -I/usr/include
99 INCS = -I. -I./src
100
101 OBJS = \
102         obj/button.o          \
103         obj/diskselector.o      \
104         obj/diskwindow.o      \
105         obj/draggablewindow.o \
106         obj/draggablewindow2.o \
107         obj/element.o         \
108         obj/gui.o             \
109         obj/guimisc.o         \
110         obj/menu.o            \
111         obj/text.o            \
112         obj/textedit.o        \
113         obj/window.o          \
114                           \
115         obj/applevideo.o      \
116         obj/ay8910.o          \
117         obj/dis65c02.o        \
118         obj/firmware.o        \
119         obj/floppy.o          \
120         obj/log.o             \
121         obj/mmu.o             \
122         obj/sdlemu_config.o   \
123         obj/settings.o        \
124         obj/sound.o           \
125         obj/timing.o          \
126         obj/v65c02.o          \
127         obj/video.o           \
128         obj/apple2.o          \
129         $(ICON)
130
131 all: checkenv message obj $(TARGET)$(EXESUFFIX)
132         @echo
133         @echo -e "\033[01;33m***\033[00;32m Looks like it compiled OK... Give it a whirl!\033[00m"
134
135 # Check the compilation environment, barf if not appropriate
136
137 checkenv:
138         @echo
139         @echo -en "\033[01;33m***\033[00;32m Checking compilation environment... \033[00m"
140 ifeq "$(FINDSDL2)" ""
141         @echo
142         @echo
143         @echo -e "\033[01;33mIt seems that you don't have the SDL 2 development libraries installed. If you"
144         @echo -e "have installed them, make sure that the sdl2-config file is somewhere in your"
145         @echo -e "path and is executable.\033[00m"
146         @echo
147 #Is there a better way to break out of the makefile?
148         @false;
149 #       @break
150 # YES! But ignores all the echo's above... :-/
151 #$(error SDL2 MISSING)
152
153 else
154         @echo -e "\033[01;37mOK\033[00m"
155 endif
156
157 message:
158         @echo
159         @echo -e "\033[01;33m***\033[00;32m Building Apple2 SDL for $(MSG)...\033[00m"
160         @echo
161
162 clean:
163         @echo -en "\033[01;33m***\033[00;32m Cleaning out the garbage...\033[00m"
164         @rm -rf obj
165         @rm -f ./$(TARGET)$(EXESUFFIX)
166         @echo -e "\033[01;37mdone!\033[00m"
167
168 obj:
169         @mkdir obj
170
171 # This is only done for Win32 at the moment...
172
173 ifneq "" "$(ICON)"
174 $(ICON): res/$(TARGET).rc res/$(TARGET).ico
175         @echo -e "\033[01;33m***\033[00;32m Processing icon...\033[00m"
176         @$(CROSS)windres -i res/$(TARGET).rc -o $(ICON) --include-dir=./res
177 endif
178
179 obj/%.o: src/%.c
180         @echo -e "\033[01;33m***\033[00;32m Compiling $<...\033[00m"
181         @$(CC) $(CFLAGS) $(INCS) -c $< -o $@
182
183 obj/%.o: src/%.cpp
184         @echo -e "\033[01;33m***\033[00;32m Compiling $<...\033[00m"
185         @$(CC) $(CPPFLAGS) $(INCS) -c $< -o $@
186
187 #GUI compilation...
188 obj/%.o: src/gui/%.cpp
189         @echo -e "\033[01;33m***\033[00;32m Compiling $<...\033[00m"
190         @$(CC) $(CPPFLAGS) $(INCS) -c $< -o $@
191
192 $(TARGET)$(EXESUFFIX): $(OBJS)
193         @echo -e "\033[01;33m***\033[00;32m Linking it all together...\033[00m"
194         @$(LD) $(LDFLAGS) -o $@ $(OBJS) $(LIBS)
195 #       strip --strip-all vj$(EXESUFFIX)
196 #       upx -9 vj$(EXESUFFIX)
197
198 statistics:
199         @echo -n "Lines in source files: "
200         @-$(FIND) ./src -name "*.cpp" | xargs cat | wc -l
201         @echo -n "Lines in header files: "
202         @-$(FIND) ./src -name "*.h" | xargs cat | wc -l
203
204 # Pull in dependencies autogenerated by gcc's -MMD switch
205 # The "-" in front in there just in case they haven't been created yet
206
207 -include obj/*.d
208