Merge pull request #349 from negativeExponent/unai_plugin_update
[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 -Iinclude -ffast-math
6 ifeq ($(DEBUG), 1)
7 CFLAGS += -O0 -ggdb
8 else
9 ifeq ($(platform), vita)
10 CFLAGS += -O3 -DNDEBUG
11 else
12 CFLAGS += -O2 -DNDEBUG
13 endif
14 endif
15 CXXFLAGS += $(CFLAGS)
16 #DRC_DBG = 1
17 #PCNT = 1
18
19 all: config.mak target_ plugins_
20
21 ifndef NO_CONFIG_MAK
22 ifneq ($(wildcard config.mak),)
23 config.mak: ./configure
24         @echo $@ is out-of-date, running configure
25         @sed -n "/.*Configured with/s/[^:]*: //p" $@ | sh
26 include config.mak
27 else
28 config.mak:
29         @echo "Please run ./configure before running make!"
30         @exit 1
31 endif
32 else # NO_CONFIG_MAK
33 config.mak:
34 endif
35
36 -include Makefile.local
37
38 CC_LINK ?= $(CC)
39 CC_AS ?= $(CC)
40 LDFLAGS += $(MAIN_LDFLAGS)
41 EXTRA_LDFLAGS ?= -Wl,-Map=$@.map
42 LDLIBS += $(MAIN_LDLIBS)
43 ifdef PCNT
44 CFLAGS += -DPCNT
45 endif
46
47 # core
48 OBJS += libpcsxcore/cdriso.o libpcsxcore/cdrom.o libpcsxcore/cheat.o libpcsxcore/debug.o \
49         libpcsxcore/decode_xa.o libpcsxcore/disr3000a.o libpcsxcore/mdec.o \
50         libpcsxcore/misc.o libpcsxcore/plugins.o libpcsxcore/ppf.o libpcsxcore/psxbios.o \
51         libpcsxcore/psxcommon.o libpcsxcore/psxcounters.o libpcsxcore/psxdma.o libpcsxcore/psxhle.o \
52         libpcsxcore/psxhw.o libpcsxcore/psxinterpreter.o libpcsxcore/psxmem.o libpcsxcore/r3000a.o \
53         libpcsxcore/sio.o libpcsxcore/socket.o libpcsxcore/spu.o
54 OBJS += libpcsxcore/gte.o libpcsxcore/gte_nf.o libpcsxcore/gte_divider.o
55 ifeq ($(WANT_ZLIB),1)
56 CFLAGS += -Ideps/zlib
57 OBJS += deps/zlib/adler32.o \
58         deps/zlib/compress.o \
59         deps/zlib/crc32.o \
60         deps/zlib/deflate.o \
61         deps/zlib/gzclose.o \
62         deps/zlib/gzlib.o \
63         deps/zlib/gzread.o \
64         deps/zlib/gzwrite.o \
65         deps/zlib/inffast.o \
66         deps/zlib/inflate.o \
67         deps/zlib/inftrees.o \
68         deps/zlib/trees.o \
69         deps/zlib/uncompr.o \
70         deps/zlib/zutil.o
71 endif
72 ifeq "$(ARCH)" "arm"
73 OBJS += libpcsxcore/gte_arm.o
74 endif
75 ifeq "$(HAVE_NEON)" "1"
76 OBJS += libpcsxcore/gte_neon.o
77 endif
78 libpcsxcore/psxbios.o: CFLAGS += -Wno-nonnull
79
80 # dynarec
81 ifeq "$(USE_DYNAREC)" "1"
82 OBJS += libpcsxcore/new_dynarec/new_dynarec.o libpcsxcore/new_dynarec/arm/linkage_arm.o
83 OBJS += libpcsxcore/new_dynarec/backends/psx/pcsxmem.o
84 else
85 libpcsxcore/new_dynarec/backends/psx/emu_if.o: CFLAGS += -DDRC_DISABLE
86 frontend/libretro.o: CFLAGS += -DDRC_DISABLE
87 endif
88 OBJS += libpcsxcore/new_dynarec/backends/psx/emu_if.o
89 libpcsxcore/new_dynarec/new_dynarec.o: libpcsxcore/new_dynarec/arm/assem_arm.c \
90         libpcsxcore/new_dynarec/backends/psx/pcsxmem_inline.c
91 ifdef DRC_DBG
92 libpcsxcore/new_dynarec/backends/psx/emu_if.o: CFLAGS += -D_FILE_OFFSET_BITS=64
93 CFLAGS += -DDRC_DBG
94 endif
95 ifeq "$(DRC_CACHE_BASE)" "1"
96 libpcsxcore/new_dynarec/%.o: CFLAGS += -DBASE_ADDR_FIXED=1
97 libpcsxcore/new_dynarec/backends/psx/%.o: CFLAGS += -DBASE_ADDR_FIXED=1
98 libpcsxcore/new_dynarec/arm/%.o: CFLAGS += -DBASE_ADDR_FIXED=1
99 endif
100
101 # spu
102 OBJS += plugins/dfsound/dma.o plugins/dfsound/freeze.o \
103         plugins/dfsound/registers.o plugins/dfsound/spu.o \
104         plugins/dfsound/out.o plugins/dfsound/nullsnd.o
105 plugins/dfsound/spu.o: plugins/dfsound/adsr.c plugins/dfsound/reverb.c \
106         plugins/dfsound/xa.c
107 ifeq "$(ARCH)" "arm"
108 OBJS += plugins/dfsound/arm_utils.o
109 endif
110 ifeq "$(HAVE_C64_TOOLS)" "1"
111 plugins/dfsound/spu.o: CFLAGS += -DC64X_DSP
112 plugins/dfsound/spu.o: plugins/dfsound/spu_c64x.c
113 frontend/menu.o: CFLAGS += -DC64X_DSP
114 endif
115 ifneq ($(findstring oss,$(SOUND_DRIVERS)),)
116 plugins/dfsound/out.o: CFLAGS += -DHAVE_OSS
117 OBJS += plugins/dfsound/oss.o
118 endif
119 ifneq ($(findstring alsa,$(SOUND_DRIVERS)),)
120 plugins/dfsound/out.o: CFLAGS += -DHAVE_ALSA
121 OBJS += plugins/dfsound/alsa.o
122 LDLIBS += -lasound
123 endif
124 ifneq ($(findstring sdl,$(SOUND_DRIVERS)),)
125 plugins/dfsound/out.o: CFLAGS += -DHAVE_SDL
126 OBJS += plugins/dfsound/sdl.o
127 endif
128 ifneq ($(findstring pulseaudio,$(SOUND_DRIVERS)),)
129 plugins/dfsound/out.o: CFLAGS += -DHAVE_PULSE
130 OBJS += plugins/dfsound/pulseaudio.o
131 endif
132 ifneq ($(findstring libretro,$(SOUND_DRIVERS)),)
133 plugins/dfsound/out.o: CFLAGS += -DHAVE_LIBRETRO
134 endif
135
136 # builtin gpu
137 OBJS += plugins/gpulib/gpu.o plugins/gpulib/vout_pl.o
138 ifeq "$(BUILTIN_GPU)" "neon"
139 CFLAGS += -DGPU_NEON
140 OBJS += plugins/gpu_neon/psx_gpu_if.o plugins/gpu_neon/psx_gpu/psx_gpu_arm_neon.o
141 plugins/gpu_neon/psx_gpu_if.o: CFLAGS += -DNEON_BUILD -DTEXTURE_CACHE_4BPP -DTEXTURE_CACHE_8BPP
142 plugins/gpu_neon/psx_gpu_if.o: plugins/gpu_neon/psx_gpu/*.c
143 endif
144 ifeq "$(BUILTIN_GPU)" "peops"
145 CFLAGS += -DGPU_PEOPS
146 # note: code is not safe for strict-aliasing? (Castlevania problems)
147 plugins/dfxvideo/gpulib_if.o: CFLAGS += -fno-strict-aliasing
148 plugins/dfxvideo/gpulib_if.o: plugins/dfxvideo/prim.c plugins/dfxvideo/soft.c
149 OBJS += plugins/dfxvideo/gpulib_if.o
150 endif
151 ifeq "$(BUILTIN_GPU)" "unai"
152 CFLAGS += -DGPU_UNAI
153 CFLAGS += -DUSE_GPULIB=1
154 #CFLAGS += -DINLINE="static __inline__"
155 #CFLAGS += -Dasm="__asm__ __volatile__"
156 OBJS += plugins/gpu_unai/gpulib_if.o
157 ifeq "$(ARCH)" "arm"
158 OBJS += plugins/gpu_unai/gpu_arm.o
159 endif
160 plugins/gpu_unai/gpulib_if.o: CFLAGS += -DREARMED -O3 
161 CC_LINK = $(CXX)
162 endif
163
164 # cdrcimg
165 OBJS += plugins/cdrcimg/cdrcimg.o
166
167 # libchdr
168 ifeq "$(HAVE_CHD)" "1"
169 CFLAGS += -Ideps/libchdr
170 OBJS += deps/crypto/md5.o
171 OBJS += deps/crypto/sha1.o
172 OBJS += deps/flac-1.3.2/src/libFLAC/bitmath.o
173 OBJS += deps/flac-1.3.2/src/libFLAC/bitreader.o
174 OBJS += deps/flac-1.3.2/src/libFLAC/cpu.o
175 OBJS += deps/flac-1.3.2/src/libFLAC/crc.o
176 OBJS += deps/flac-1.3.2/src/libFLAC/fixed.o
177 OBJS += deps/flac-1.3.2/src/libFLAC/fixed_intrin_sse2.o
178 OBJS += deps/flac-1.3.2/src/libFLAC/fixed_intrin_ssse3.o
179 OBJS += deps/flac-1.3.2/src/libFLAC/float.o
180 OBJS += deps/flac-1.3.2/src/libFLAC/format.o
181 OBJS += deps/flac-1.3.2/src/libFLAC/lpc.o
182 OBJS += deps/flac-1.3.2/src/libFLAC/lpc_intrin_avx2.o
183 OBJS += deps/flac-1.3.2/src/libFLAC/lpc_intrin_sse2.o
184 OBJS += deps/flac-1.3.2/src/libFLAC/lpc_intrin_sse41.o
185 OBJS += deps/flac-1.3.2/src/libFLAC/lpc_intrin_sse.o
186 OBJS += deps/flac-1.3.2/src/libFLAC/md5.o
187 OBJS += deps/flac-1.3.2/src/libFLAC/memory.o
188 OBJS += deps/flac-1.3.2/src/libFLAC/metadata_iterators.o
189 OBJS += deps/flac-1.3.2/src/libFLAC/metadata_object.o
190 OBJS += deps/flac-1.3.2/src/libFLAC/stream_decoder.o
191 OBJS += deps/flac-1.3.2/src/libFLAC/window.o
192 OBJS += deps/lzma-16.04/C/Alloc.o
193 OBJS += deps/lzma-16.04/C/Bra86.o
194 OBJS += deps/lzma-16.04/C/Bra.o
195 OBJS += deps/lzma-16.04/C/BraIA64.o
196 OBJS += deps/lzma-16.04/C/CpuArch.o
197 OBJS += deps/lzma-16.04/C/Delta.o
198 OBJS += deps/lzma-16.04/C/LzFind.o
199 OBJS += deps/lzma-16.04/C/Lzma86Dec.o
200 OBJS += deps/lzma-16.04/C/Lzma86Enc.o
201 OBJS += deps/lzma-16.04/C/LzmaDec.o
202 OBJS += deps/lzma-16.04/C/LzmaEnc.o
203 OBJS += deps/lzma-16.04/C/LzmaLib.o
204 OBJS += deps/lzma-16.04/C/Sort.o
205 OBJS += deps/libchdr/bitstream.o
206 OBJS += deps/libchdr/cdrom.o
207 OBJS += deps/libchdr/chd.o
208 OBJS += deps/libchdr/flac.o
209 OBJS += deps/libchdr/huffman.o
210
211 ifneq (,$(findstring win,$(platform)))
212   CFLAGS += -DHAVE_FSEEKO
213   OBJS += deps/flac-1.3.2/src/libFLAC/windows_unicode_filenames.o
214 else
215   CFLAGS += -DHAVE_SYS_PARAM_H
216 endif
217
218 CFLAGS += -Ideps/crypto -Ideps/flac-1.3.2/include -Ideps/flac-1.3.2/src/libFLAC/include -Ideps/flac-1.3.2/src/libFLAC/include -Ideps/lzma-16.04/C
219 CFLAGS += -DHAVE_CHD -D'PACKAGE_VERSION="1.3.2"' -DFLAC__HAS_OGG=0 -DFLAC__NO_DLL -DHAVE_LROUND -DHAVE_STDINT_H -DHAVE_STDLIB_H -DFLAC__NO_DLL -D_7ZIP_ST
220 LDFLAGS += -lm
221 endif
222
223 # dfinput
224 OBJS += plugins/dfinput/main.o plugins/dfinput/pad.o plugins/dfinput/guncon.o
225
226 # frontend/gui
227 OBJS += frontend/cspace.o
228 ifeq "$(HAVE_NEON)" "1"
229 OBJS += frontend/cspace_neon.o
230 else
231 ifeq "$(ARCH)" "arm"
232 OBJS += frontend/cspace_arm.o
233 endif
234 endif
235
236 ifeq "$(PLATFORM)" "generic"
237 OBJS += frontend/libpicofe/in_sdl.o
238 OBJS += frontend/libpicofe/plat_sdl.o
239 OBJS += frontend/libpicofe/plat_dummy.o
240 OBJS += frontend/libpicofe/linux/in_evdev.o
241 OBJS += frontend/plat_sdl.o
242 ifeq "$(HAVE_GLES)" "1"
243 OBJS += frontend/libpicofe/gl.o frontend/libpicofe/gl_platform.o
244 LDLIBS += $(LDLIBS_GLES)
245 frontend/libpicofe/plat_sdl.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES)
246 frontend/libpicofe/gl_platform.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES)
247 frontend/libpicofe/gl.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES)
248 frontend/plat_sdl.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES)
249 endif
250 USE_PLUGIN_LIB = 1
251 USE_FRONTEND = 1
252 endif
253 ifeq "$(PLATFORM)" "pandora"
254 OBJS += frontend/libpicofe/pandora/plat.o
255 OBJS += frontend/libpicofe/linux/fbdev.o frontend/libpicofe/linux/xenv.o
256 OBJS += frontend/libpicofe/linux/in_evdev.o
257 OBJS += frontend/plat_pandora.o frontend/plat_omap.o
258 frontend/main.o frontend/menu.o: CFLAGS += -include frontend/pandora/ui_feat.h
259 frontend/libpicofe/linux/plat.o: CFLAGS += -DPANDORA
260 USE_PLUGIN_LIB = 1
261 USE_FRONTEND = 1
262 endif
263 ifeq "$(PLATFORM)" "caanoo"
264 OBJS += frontend/libpicofe/gp2x/in_gp2x.o frontend/warm/warm.o
265 OBJS += frontend/libpicofe/gp2x/soc_pollux.o
266 OBJS += frontend/libpicofe/linux/in_evdev.o
267 OBJS += frontend/plat_pollux.o frontend/in_tsbutton.o frontend/blit320.o
268 frontend/main.o frontend/menu.o: CFLAGS += -include frontend/320240/ui_gp2x.h
269 USE_PLUGIN_LIB = 1
270 USE_FRONTEND = 1
271 endif
272 ifeq "$(PLATFORM)" "maemo"
273 OBJS += maemo/hildon.o maemo/main.o maemo/maemo_xkb.o frontend/pl_gun_ts.o
274 maemo/%.o: maemo/%.c
275 USE_PLUGIN_LIB = 1
276 LDFLAGS += $(shell pkg-config --libs hildon-1 libpulse)
277 CFLAGS += $(shell pkg-config --cflags hildon-1) -DHAVE_TSLIB
278 CFLAGS += `pkg-config --cflags glib-2.0 libosso dbus-1 hildon-fm-2`
279 LDFLAGS += `pkg-config --libs glib-2.0 libosso dbus-1 hildon-fm-2`
280 endif
281 ifeq "$(PLATFORM)" "libretro"
282 OBJS += frontend/libretro.o
283 CFLAGS += -Ilibretro-common/include
284 CFLAGS += -DFRONTEND_SUPPORTS_RGB565
285 CFLAGS += -DHAVE_LIBRETRO
286
287 ifeq ($(MMAP_WIN32),1)
288 OBJS += libpcsxcore/memmap_win32.o
289 endif
290 endif
291
292 ifeq "$(USE_PLUGIN_LIB)" "1"
293 OBJS += frontend/plugin_lib.o
294 OBJS += frontend/libpicofe/linux/plat.o
295 OBJS += frontend/libpicofe/readpng.o frontend/libpicofe/fonts.o
296 ifeq "$(HAVE_NEON)" "1"
297 OBJS += frontend/libpicofe/arm/neon_scale2x.o
298 OBJS += frontend/libpicofe/arm/neon_eagle2x.o
299 frontend/libpicofe/arm/neon_scale2x.o: CFLAGS += -DDO_BGR_TO_RGB
300 frontend/libpicofe/arm/neon_eagle2x.o: CFLAGS += -DDO_BGR_TO_RGB
301 endif
302 endif
303 ifeq "$(USE_FRONTEND)" "1"
304 OBJS += frontend/menu.o
305 OBJS += frontend/libpicofe/input.o
306 frontend/menu.o: frontend/libpicofe/menu.c
307 ifeq "$(HAVE_TSLIB)" "1"
308 frontend/%.o: CFLAGS += -DHAVE_TSLIB
309 OBJS += frontend/pl_gun_ts.o
310 endif
311 else
312 CFLAGS += -DNO_FRONTEND
313 endif
314
315 # misc
316 OBJS += frontend/main.o frontend/plugin.o
317
318
319 frontend/menu.o frontend/main.o: frontend/revision.h
320 frontend/plat_sdl.o frontend/libretro.o: frontend/revision.h
321
322 frontend/libpicofe/%.c:
323         @echo "libpicofe module is missing, please run:"
324         @echo "git submodule init && git submodule update"
325         @exit 1
326
327 libpcsxcore/gte_nf.o: libpcsxcore/gte.c
328         $(CC) -c -o $@ $^ $(CFLAGS) -DFLAGLESS
329
330 frontend/revision.h: FORCE
331         @(git describe || echo) | sed -e 's/.*/#define REV "\0"/' > $@_
332         @diff -q $@_ $@ > /dev/null 2>&1 || cp $@_ $@
333         @rm $@_
334
335 %.o: %.S
336         $(CC_AS) $(CFLAGS) -c $^ -o $@
337
338 %.o: %.cpp
339         $(CXX) $(CXXFLAGS) -c -o $@ $<
340
341 %.o: %.c
342         $(CC) $(CFLAGS) -c -o $@ $<
343
344 target_: $(TARGET)
345
346 $(TARGET): $(OBJS)
347 ifeq ($(STATIC_LINKING), 1)
348         $(AR) rcs $@ $(OBJS)
349 else
350         $(CC_LINK) -o $@ $^ $(LDFLAGS) $(LDLIBS) $(EXTRA_LDFLAGS)
351 endif
352
353 clean: $(PLAT_CLEAN) clean_plugins
354         $(RM) $(TARGET) $(OBJS) $(TARGET).map frontend/revision.h
355
356 ifneq ($(PLUGINS),)
357 plugins_: $(PLUGINS)
358
359 $(PLUGINS):
360         make -C $(dir $@)
361
362 clean_plugins:
363         make -C plugins/gpulib/ clean
364         for dir in $(PLUGINS) ; do \
365                 $(MAKE) -C $$(dirname $$dir) clean; done
366 else
367 plugins_:
368 clean_plugins:
369 endif
370
371 .PHONY: all clean target_ plugins_ clean_plugins FORCE
372
373 # ----------- release -----------
374
375 VER ?= $(shell git describe HEAD)
376
377 ifeq "$(PLATFORM)" "generic"
378 OUT = pcsx_rearmed_$(VER)
379
380 rel: pcsx $(PLUGINS) \
381                 frontend/pandora/skin readme.txt COPYING
382         rm -rf $(OUT)
383         mkdir -p $(OUT)/plugins
384         mkdir -p $(OUT)/bios
385         cp -r $^ $(OUT)/
386         mv $(OUT)/*.so* $(OUT)/plugins/
387         zip -9 -r $(OUT).zip $(OUT)
388 endif
389
390 ifeq "$(PLATFORM)" "pandora"
391 PND_MAKE ?= $(HOME)/dev/pnd/src/pandora-libraries/testdata/scripts/pnd_make.sh
392
393 rel: pcsx plugins/dfsound/pcsxr_spu_area3.out $(PLUGINS) \
394                 frontend/pandora/pcsx.sh frontend/pandora/pcsx.pxml.templ frontend/pandora/pcsx.png \
395                 frontend/pandora/picorestore frontend/pandora/skin readme.txt COPYING
396         rm -rf out
397         mkdir -p out/plugins
398         cp -r $^ out/
399         sed -e 's/%PR%/$(VER)/g' out/pcsx.pxml.templ > out/pcsx.pxml
400         rm out/pcsx.pxml.templ
401         mv out/*.so out/plugins/
402         $(PND_MAKE) -p pcsx_rearmed_$(VER).pnd -d out -x out/pcsx.pxml -i frontend/pandora/pcsx.png -c
403 endif
404
405 ifeq "$(PLATFORM)" "caanoo"
406 PLAT_CLEAN = caanoo_clean
407
408 caanoo_clean:
409         $(RM) frontend/320240/pollux_set
410
411 rel: pcsx $(PLUGINS) \
412                 frontend/320240/caanoo.gpe frontend/320240/pcsx26.png \
413                 frontend/320240/pcsxb.png frontend/320240/skin \
414                 frontend/warm/bin/warm_2.6.24.ko frontend/320240/pollux_set \
415                 frontend/320240/pcsx_rearmed.ini frontend/320240/haptic_w.cfg \
416                 frontend/320240/haptic_s.cfg \
417                 readme.txt COPYING
418         rm -rf out
419         mkdir -p out/pcsx_rearmed/plugins
420         cp -r $^ out/pcsx_rearmed/
421         mv out/pcsx_rearmed/*.so out/pcsx_rearmed/plugins/
422         mv out/pcsx_rearmed/caanoo.gpe out/pcsx_rearmed/pcsx.gpe
423         mv out/pcsx_rearmed/pcsx_rearmed.ini out/
424         mkdir out/pcsx_rearmed/lib/
425         cp ./lib/libbz2.so.1 out/pcsx_rearmed/lib/
426         mkdir out/pcsx_rearmed/bios/
427         cd out && zip -9 -r ../pcsx_rearmed_$(VER)_caanoo.zip *
428 endif