]> Shamusworld >> Repos - apple2/blob - Makefile
e6515e8941cb2f261b507fa4348f37819cec0bd1
[apple2] / Makefile
1 #
2 # Unified Makefile for Apple 2 SDL
3 #
4 # by James Hammons
5 # (C) 2005-17 Underground Software
6 # This software is licensed under the GPL v3
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 -lm $(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/apple2-icon-64x64.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/mos6522via.o      \
117         obj/mmu.o             \
118         obj/sdlemu_config.o   \
119         obj/settings.o        \
120         obj/sound.o           \
121         obj/timing.o          \
122         obj/v65c02.o          \
123         obj/video.o           \
124         obj/apple2.o          \
125         $(ICON)
126
127 all: message obj $(TARGET)$(EXESUFFIX)
128         @echo
129         @echo -e "\033[01;33m***\033[00;32m Looks like it compiled OK... Give it a whirl!\033[00m"
130
131 # Check the compilation environment, barf if not appropriate
132
133 ifeq "$(FINDSDL2)" ""
134   $(info )
135   $(info It seems that you don't have the SDL 2 development libraries installed. If you)
136   $(info have installed them, make sure that the sdl2-config file is somewhere in your)
137   $(info path and is executable.)
138   $(info )
139   $(error SDL2 MISSING)
140 endif
141
142 message:
143         @echo
144         @echo -e "\033[01;33m***\033[00;32m Building Apple2 SDL for $(MSG)...\033[00m"
145         @echo
146
147 clean:
148         @echo -en "\033[01;33m***\033[00;32m Cleaning out the garbage...\033[00m"
149         @rm -rf obj
150         @rm -f ./$(TARGET)$(EXESUFFIX)
151         @echo -e "\033[01;37mdone!\033[00m"
152
153 obj:
154         @mkdir obj
155
156 # Icon creation is only done for Win32 at the moment...
157 ifneq "" "$(ICON)"
158 $(ICON): res/$(TARGET).rc res/$(TARGET).ico
159         @echo -e "\033[01;33m***\033[00;32m Processing icon...\033[00m"
160         @$(CROSS)windres -i res/$(TARGET).rc -o $(ICON) --include-dir=./res
161 endif
162
163 obj/%.o: src/%.c
164         @echo -e "\033[01;33m***\033[00;32m Compiling $<...\033[00m"
165         @$(CC) $(CFLAGS) $(INCS) -c $< -o $@
166
167 obj/%.o: src/%.cpp
168         @echo -e "\033[01;33m***\033[00;32m Compiling $<...\033[00m"
169         @$(CC) $(CPPFLAGS) $(INCS) -c $< -o $@
170
171 #GUI compilation...
172 obj/%.o: src/gui/%.cpp
173         @echo -e "\033[01;33m***\033[00;32m Compiling $<...\033[00m"
174         @$(CC) $(CPPFLAGS) $(INCS) -c $< -o $@
175
176 $(TARGET)$(EXESUFFIX): $(OBJS)
177         @echo -e "\033[01;33m***\033[00;32m Linking it all together...\033[00m"
178         @$(LD) $(LDFLAGS) -o $@ $(OBJS) $(LIBS)
179 #       strip --strip-all $(TARGET)$(EXESUFFIX)
180 #       upx -9 $(TARGET)$(EXESUFFIX)
181
182 statistics:
183         @echo -n "Lines in source files: "
184         @-$(FIND) ./src -name "*.cpp" | xargs cat | wc -l
185         @echo -n "Lines in header files: "
186         @-$(FIND) ./src -name "*.h" | xargs cat | wc -l
187
188 # Pull in dependencies autogenerated by gcc's -MMD switch
189 # The "-" in front in there just in case they haven't been created yet
190
191 -include obj/*.d
192