deal with some more annoying warnings
[pcsx_rearmed.git] / Makefile
1 # Makefile for PCSX ReARMed
2
3 # default stuff goes here, so that config can override
4 TARGET ?= pcsx
5 CFLAGS += -Wall -ggdb -Iinclude -ffast-math
6 ifndef DEBUG
7 CFLAGS += -O2 -DNDEBUG
8 endif
9 CXXFLAGS += $(CFLAGS)
10 #DRC_DBG = 1
11 #PCNT = 1
12
13 all: config.mak target_ plugins_
14
15 ifndef NO_CONFIG_MAK
16 ifneq ($(wildcard config.mak),)
17 config.mak: ./configure
18         @echo $@ is out-of-date, running configure
19         @sed -n "/.*Configured with/s/[^:]*: //p" $@ | sh
20 include config.mak
21 else
22 config.mak:
23         @echo "Please run ./configure before running make!"
24         @exit 1
25 endif
26 else # NO_CONFIG_MAK
27 config.mak:
28 endif
29
30 -include Makefile.local
31
32 CC_LINK ?= $(CC)
33 CC_AS ?= $(CC)
34 LDFLAGS += $(MAIN_LDFLAGS)
35 EXTRA_LDFLAGS ?= -Wl,-Map=$@.map
36 LDLIBS += $(MAIN_LDLIBS)
37 ifdef PCNT
38 CFLAGS += -DPCNT
39 endif
40
41 # core
42 OBJS += libpcsxcore/cdriso.o libpcsxcore/cdrom.o libpcsxcore/cheat.o libpcsxcore/debug.o \
43         libpcsxcore/decode_xa.o libpcsxcore/disr3000a.o libpcsxcore/mdec.o \
44         libpcsxcore/misc.o libpcsxcore/plugins.o libpcsxcore/ppf.o libpcsxcore/psxbios.o \
45         libpcsxcore/psxcommon.o libpcsxcore/psxcounters.o libpcsxcore/psxdma.o libpcsxcore/psxhle.o \
46         libpcsxcore/psxhw.o libpcsxcore/psxinterpreter.o libpcsxcore/psxmem.o libpcsxcore/r3000a.o \
47         libpcsxcore/sio.o libpcsxcore/socket.o libpcsxcore/spu.o
48 OBJS += libpcsxcore/gte.o libpcsxcore/gte_nf.o libpcsxcore/gte_divider.o
49 ifeq "$(ARCH)" "arm"
50 OBJS += libpcsxcore/gte_arm.o
51 endif
52 ifeq "$(HAVE_NEON)" "1"
53 OBJS += libpcsxcore/gte_neon.o
54 endif
55 libpcsxcore/psxbios.o: CFLAGS += -Wno-nonnull
56
57 # dynarec
58 ifeq "$(USE_DYNAREC)" "1"
59 OBJS += libpcsxcore/new_dynarec/new_dynarec.o libpcsxcore/new_dynarec/linkage_arm.o
60 OBJS += libpcsxcore/new_dynarec/pcsxmem.o
61 else
62 libpcsxcore/new_dynarec/emu_if.o: CFLAGS += -DDRC_DISABLE
63 frontend/libretro.o: CFLAGS += -DDRC_DISABLE
64 endif
65 OBJS += libpcsxcore/new_dynarec/emu_if.o
66 libpcsxcore/new_dynarec/new_dynarec.o: libpcsxcore/new_dynarec/assem_arm.c \
67         libpcsxcore/new_dynarec/pcsxmem_inline.c
68 ifdef DRC_DBG
69 libpcsxcore/new_dynarec/emu_if.o: CFLAGS += -D_FILE_OFFSET_BITS=64
70 CFLAGS += -DDRC_DBG
71 endif
72 ifeq "$(DRC_CACHE_BASE)" "1"
73 libpcsxcore/new_dynarec/%.o: CFLAGS += -DBASE_ADDR_FIXED=1
74 endif
75
76 # spu
77 OBJS += plugins/dfsound/dma.o plugins/dfsound/freeze.o \
78         plugins/dfsound/registers.o plugins/dfsound/spu.o \
79         plugins/dfsound/out.o plugins/dfsound/nullsnd.o
80 plugins/dfsound/spu.o: plugins/dfsound/adsr.c plugins/dfsound/reverb.c \
81         plugins/dfsound/xa.c
82 ifeq "$(ARCH)" "arm"
83 OBJS += plugins/dfsound/arm_utils.o
84 endif
85 ifeq "$(HAVE_C64_TOOLS)" "1"
86 plugins/dfsound/spu.o: CFLAGS += -DC64X_DSP
87 plugins/dfsound/spu.o: plugins/dfsound/spu_c64x.c
88 frontend/menu.o: CFLAGS += -DC64X_DSP
89 endif
90 ifneq ($(findstring oss,$(SOUND_DRIVERS)),)
91 plugins/dfsound/out.o: CFLAGS += -DHAVE_OSS
92 OBJS += plugins/dfsound/oss.o
93 endif
94 ifneq ($(findstring alsa,$(SOUND_DRIVERS)),)
95 plugins/dfsound/out.o: CFLAGS += -DHAVE_ALSA
96 OBJS += plugins/dfsound/alsa.o
97 LDLIBS += -lasound
98 endif
99 ifneq ($(findstring sdl,$(SOUND_DRIVERS)),)
100 plugins/dfsound/out.o: CFLAGS += -DHAVE_SDL
101 OBJS += plugins/dfsound/sdl.o
102 endif
103 ifneq ($(findstring pulseaudio,$(SOUND_DRIVERS)),)
104 plugins/dfsound/out.o: CFLAGS += -DHAVE_PULSE
105 OBJS += plugins/dfsound/pulseaudio.o
106 endif
107 ifneq ($(findstring libretro,$(SOUND_DRIVERS)),)
108 plugins/dfsound/out.o: CFLAGS += -DHAVE_LIBRETRO
109 endif
110
111 # builtin gpu
112 OBJS += plugins/gpulib/gpu.o plugins/gpulib/vout_pl.o
113 ifeq "$(BUILTIN_GPU)" "neon"
114 OBJS += plugins/gpu_neon/psx_gpu_if.o plugins/gpu_neon/psx_gpu/psx_gpu_arm_neon.o
115 plugins/gpu_neon/psx_gpu_if.o: CFLAGS += -DNEON_BUILD -DTEXTURE_CACHE_4BPP -DTEXTURE_CACHE_8BPP
116 plugins/gpu_neon/psx_gpu_if.o: plugins/gpu_neon/psx_gpu/*.c
117 endif
118 ifeq "$(BUILTIN_GPU)" "peops"
119 # note: code is not safe for strict-aliasing? (Castlevania problems)
120 plugins/dfxvideo/gpulib_if.o: CFLAGS += -fno-strict-aliasing
121 plugins/dfxvideo/gpulib_if.o: plugins/dfxvideo/prim.c plugins/dfxvideo/soft.c
122 OBJS += plugins/dfxvideo/gpulib_if.o
123 endif
124 ifeq "$(BUILTIN_GPU)" "unai"
125 OBJS += plugins/gpu_unai/gpulib_if.o
126 ifeq "$(ARCH)" "arm"
127 OBJS += plugins/gpu_unai/gpu_arm.o
128 endif
129 plugins/gpu_unai/gpulib_if.o: CFLAGS += -DREARMED -O3 
130 CC_LINK = $(CXX)
131 endif
132
133 # cdrcimg
134 OBJS += plugins/cdrcimg/cdrcimg.o
135 ifeq "$(CHD_SUPPORT)" "1"
136 OBJS += libchdr/src/libchdr_bitstream.o
137 OBJS += libchdr/src/libchdr_cdrom.o
138 OBJS += libchdr/src/libchdr_chd.o
139 OBJS += libchdr/src/libchdr_flac.o
140 OBJS += libchdr/src/libchdr_huffman.o
141 OBJS += libchdr/deps/lzma-19.00/src/Alloc.o libchdr/deps/lzma-19.00/src/Bra86.o libchdr/deps/lzma-19.00/src/BraIA64.o libchdr/deps/lzma-19.00/src/CpuArch.o libchdr/deps/lzma-19.00/src/Delta.o
142 OBJS += libchdr/deps/lzma-19.00/src/LzFind.o libchdr/deps/lzma-19.00/src/Lzma86Dec.o libchdr/deps/lzma-19.00/src/LzmaDec.o libchdr/deps/lzma-19.00/src/LzmaEnc.o libchdr/deps/lzma-19.00/src/Sort.o
143 CFLAGS += -DHAVE_CHD -D_7ZIP_ST -Ilibchdr/include/libchdr -Ilibchdr/include/dr_libs -Ilibchdr/include -Ilibchdr/deps/lzma-19.00/include
144 endif
145
146 # dfinput
147 OBJS += plugins/dfinput/main.o plugins/dfinput/pad.o plugins/dfinput/guncon.o
148
149 # frontend/gui
150 OBJS += frontend/cspace.o
151 ifeq "$(HAVE_NEON)" "1"
152 OBJS += frontend/cspace_neon.o
153 else
154 ifeq "$(ARCH)" "arm"
155 OBJS += frontend/cspace_arm.o
156 endif
157 endif
158
159 ifeq "$(PLATFORM)" "generic"
160 OBJS += frontend/libpicofe/in_sdl.o
161 OBJS += frontend/libpicofe/plat_sdl.o
162 OBJS += frontend/libpicofe/plat_dummy.o
163 OBJS += frontend/libpicofe/linux/in_evdev.o
164 OBJS += frontend/plat_sdl.o
165 ifeq "$(HAVE_GLES)" "1"
166 OBJS += frontend/libpicofe/gl.o frontend/libpicofe/gl_platform.o
167 LDLIBS += $(LDLIBS_GLES)
168 frontend/libpicofe/plat_sdl.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES)
169 frontend/libpicofe/gl_platform.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES)
170 frontend/libpicofe/gl.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES)
171 frontend/plat_sdl.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES)
172 endif
173 USE_PLUGIN_LIB = 1
174 USE_FRONTEND = 1
175 endif
176 ifeq "$(PLATFORM)" "pandora"
177 OBJS += frontend/libpicofe/pandora/plat.o
178 OBJS += frontend/libpicofe/linux/fbdev.o frontend/libpicofe/linux/xenv.o
179 OBJS += frontend/libpicofe/linux/in_evdev.o
180 OBJS += frontend/plat_pandora.o frontend/plat_omap.o
181 frontend/main.o frontend/menu.o: CFLAGS += -include frontend/pandora/ui_feat.h
182 frontend/libpicofe/linux/plat.o: CFLAGS += -DPANDORA
183 USE_PLUGIN_LIB = 1
184 USE_FRONTEND = 1
185 endif
186 ifeq "$(PLATFORM)" "caanoo"
187 OBJS += frontend/libpicofe/gp2x/in_gp2x.o frontend/warm/warm.o
188 OBJS += frontend/libpicofe/gp2x/soc_pollux.o
189 OBJS += frontend/libpicofe/linux/in_evdev.o
190 OBJS += frontend/plat_pollux.o frontend/in_tsbutton.o frontend/blit320.o
191 frontend/main.o frontend/menu.o: CFLAGS += -include frontend/320240/ui_gp2x.h
192 USE_PLUGIN_LIB = 1
193 USE_FRONTEND = 1
194 endif
195 ifeq "$(PLATFORM)" "maemo"
196 OBJS += maemo/hildon.o maemo/main.o maemo/maemo_xkb.o frontend/pl_gun_ts.o
197 maemo/%.o: maemo/%.c
198 USE_PLUGIN_LIB = 1
199 LDFLAGS += $(shell pkg-config --libs hildon-1 libpulse)
200 CFLAGS += $(shell pkg-config --cflags hildon-1) -DHAVE_TSLIB
201 CFLAGS += `pkg-config --cflags glib-2.0 libosso dbus-1 hildon-fm-2`
202 LDFLAGS += `pkg-config --libs glib-2.0 libosso dbus-1 hildon-fm-2`
203 endif
204 ifeq "$(PLATFORM)" "libretro"
205 OBJS += frontend/libretro.o
206 CFLAGS += -DFRONTEND_SUPPORTS_RGB565
207
208 ifeq ($(MMAP_WIN32),1)
209 OBJS += libpcsxcore/memmap_win32.o
210 endif
211 endif
212
213 ifeq "$(USE_PLUGIN_LIB)" "1"
214 OBJS += frontend/plugin_lib.o
215 OBJS += frontend/libpicofe/linux/plat.o
216 OBJS += frontend/libpicofe/readpng.o frontend/libpicofe/fonts.o
217 ifeq "$(HAVE_NEON)" "1"
218 OBJS += frontend/libpicofe/arm/neon_scale2x.o
219 OBJS += frontend/libpicofe/arm/neon_eagle2x.o
220 frontend/libpicofe/arm/neon_scale2x.o: CFLAGS += -DDO_BGR_TO_RGB
221 frontend/libpicofe/arm/neon_eagle2x.o: CFLAGS += -DDO_BGR_TO_RGB
222 endif
223 endif
224 ifeq "$(USE_FRONTEND)" "1"
225 OBJS += frontend/menu.o
226 OBJS += frontend/libpicofe/input.o
227 frontend/menu.o: frontend/libpicofe/menu.c
228 ifeq "$(HAVE_TSLIB)" "1"
229 frontend/%.o: CFLAGS += -DHAVE_TSLIB
230 OBJS += frontend/pl_gun_ts.o
231 endif
232 else
233 CFLAGS += -DNO_FRONTEND
234 endif
235
236 # misc
237 OBJS += frontend/main.o frontend/plugin.o
238
239
240 frontend/menu.o frontend/main.o: frontend/revision.h
241 frontend/plat_sdl.o frontend/libretro.o: frontend/revision.h
242
243 frontend/libpicofe/%.c:
244         @echo "libpicofe module is missing, please run:"
245         @echo "git submodule init && git submodule update"
246         @exit 1
247
248 libpcsxcore/gte_nf.o: libpcsxcore/gte.c
249         $(CC) -c -o $@ $^ $(CFLAGS) -DFLAGLESS
250
251 frontend/revision.h: FORCE
252         @(git describe || echo) | sed -e 's/.*/#define REV "\0"/' > $@_
253         @diff -q $@_ $@ > /dev/null 2>&1 || cp $@_ $@
254         @rm $@_
255
256 %.o: %.S
257         $(CC_AS) $(CFLAGS) -c $^ -o $@
258
259
260 target_: $(TARGET)
261
262 $(TARGET): $(OBJS)
263         $(CC_LINK) -o $@ $^ $(LDFLAGS) $(LDLIBS) $(EXTRA_LDFLAGS)
264
265 clean: $(PLAT_CLEAN) clean_plugins
266         $(RM) $(TARGET) $(OBJS) $(TARGET).map frontend/revision.h
267
268 ifneq ($(PLUGINS),)
269 plugins_: $(PLUGINS)
270
271 $(PLUGINS):
272         make -C $(dir $@)
273
274 clean_plugins:
275         make -C plugins/gpulib/ clean
276         for dir in $(PLUGINS) ; do \
277                 $(MAKE) -C $$(dirname $$dir) clean; done
278 else
279 plugins_:
280 clean_plugins:
281 endif
282
283 .PHONY: all clean target_ plugins_ clean_plugins FORCE
284
285 # ----------- release -----------
286
287 VER ?= $(shell git describe HEAD)
288
289 ifeq "$(PLATFORM)" "generic"
290 OUT = pcsx_rearmed_$(VER)
291
292 rel: pcsx $(PLUGINS) \
293                 frontend/pandora/skin readme.txt COPYING
294         rm -rf $(OUT)
295         mkdir -p $(OUT)/plugins
296         mkdir -p $(OUT)/bios
297         cp -r $^ $(OUT)/
298         mv $(OUT)/*.so* $(OUT)/plugins/
299         zip -9 -r $(OUT).zip $(OUT)
300 endif
301
302 ifeq "$(PLATFORM)" "pandora"
303 PND_MAKE ?= $(HOME)/dev/pnd/src/pandora-libraries/testdata/scripts/pnd_make.sh
304
305 rel: pcsx plugins/dfsound/pcsxr_spu_area3.out $(PLUGINS) \
306                 frontend/pandora/pcsx.sh frontend/pandora/pcsx.pxml.templ frontend/pandora/pcsx.png \
307                 frontend/pandora/picorestore frontend/pandora/skin readme.txt COPYING
308         rm -rf out
309         mkdir -p out/plugins
310         cp -r $^ out/
311         sed -e 's/%PR%/$(VER)/g' out/pcsx.pxml.templ > out/pcsx.pxml
312         rm out/pcsx.pxml.templ
313         mv out/*.so out/plugins/
314         $(PND_MAKE) -p pcsx_rearmed_$(VER).pnd -d out -x out/pcsx.pxml -i frontend/pandora/pcsx.png -c
315 endif
316
317 ifeq "$(PLATFORM)" "caanoo"
318 PLAT_CLEAN = caanoo_clean
319
320 caanoo_clean:
321         $(RM) frontend/320240/pollux_set
322
323 rel: pcsx $(PLUGINS) \
324                 frontend/320240/caanoo.gpe frontend/320240/pcsx26.png \
325                 frontend/320240/pcsxb.png frontend/320240/skin \
326                 frontend/warm/bin/warm_2.6.24.ko frontend/320240/pollux_set \
327                 frontend/320240/pcsx_rearmed.ini frontend/320240/haptic_w.cfg \
328                 frontend/320240/haptic_s.cfg \
329                 readme.txt COPYING
330         rm -rf out
331         mkdir -p out/pcsx_rearmed/plugins
332         cp -r $^ out/pcsx_rearmed/
333         mv out/pcsx_rearmed/*.so out/pcsx_rearmed/plugins/
334         mv out/pcsx_rearmed/caanoo.gpe out/pcsx_rearmed/pcsx.gpe
335         mv out/pcsx_rearmed/pcsx_rearmed.ini out/
336         mkdir out/pcsx_rearmed/lib/
337         cp ./lib/libbz2.so.1 out/pcsx_rearmed/lib/
338         mkdir out/pcsx_rearmed/bios/
339         cd out && zip -9 -r ../pcsx_rearmed_$(VER)_caanoo.zip *
340 endif