Merge pull request #517 from negativeExponent/input
[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), $(filter $(platform), vita ctr))
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/libchdr/deps/zlib-1.2.11
57 OBJS += deps/libchdr/deps/zlib-1.2.11/adler32.o \
58         deps/libchdr/deps/zlib-1.2.11/compress.o \
59         deps/libchdr/deps/zlib-1.2.11/crc32.o \
60         deps/libchdr/deps/zlib-1.2.11/deflate.o \
61         deps/libchdr/deps/zlib-1.2.11/gzclose.o \
62         deps/libchdr/deps/zlib-1.2.11/gzlib.o \
63         deps/libchdr/deps/zlib-1.2.11/gzread.o \
64         deps/libchdr/deps/zlib-1.2.11/gzwrite.o \
65         deps/libchdr/deps/zlib-1.2.11/infback.o \
66         deps/libchdr/deps/zlib-1.2.11/inffast.o \
67         deps/libchdr/deps/zlib-1.2.11/inflate.o \
68         deps/libchdr/deps/zlib-1.2.11/inftrees.o \
69         deps/libchdr/deps/zlib-1.2.11/trees.o \
70         deps/libchdr/deps/zlib-1.2.11/uncompr.o \
71         deps/libchdr/deps/zlib-1.2.11/zutil.o
72 endif
73 ifeq "$(ARCH)" "arm"
74 OBJS += libpcsxcore/gte_arm.o
75 endif
76 ifeq "$(HAVE_NEON)" "1"
77 OBJS += libpcsxcore/gte_neon.o
78 endif
79 libpcsxcore/psxbios.o: CFLAGS += -Wno-nonnull
80
81 # dynarec
82 ifeq "$(DYNAREC)" "lightrec"
83 CFLAGS += -Ideps/lightning/include -Ideps/lightrec \
84                   -DLIGHTREC -DLIGHTREC_STATIC
85 OBJS += libpcsxcore/lightrec/plugin.o
86 OBJS += deps/lightning/lib/jit_disasm.o \
87                 deps/lightning/lib/jit_memory.o \
88                 deps/lightning/lib/jit_names.o \
89                 deps/lightning/lib/jit_note.o \
90                 deps/lightning/lib/jit_print.o \
91                 deps/lightning/lib/jit_size.o \
92                 deps/lightning/lib/lightning.o \
93                 deps/lightrec/blockcache.o \
94                 deps/lightrec/disassembler.o \
95                 deps/lightrec/emitter.o \
96                 deps/lightrec/interpreter.o \
97                 deps/lightrec/lightrec.o \
98                 deps/lightrec/memmanager.o \
99                 deps/lightrec/optimizer.o \
100                 deps/lightrec/regcache.o \
101                 deps/lightrec/recompiler.o \
102                 deps/lightrec/reaper.o
103 ifeq ($(MMAP_WIN32),1)
104 CFLAGS += -Ideps/mman
105 OBJS += deps/mman/mman.o
106 endif
107 else ifeq "$(DYNAREC)" "ari64"
108 CFLAGS += -DNEW_DYNAREC
109 OBJS += libpcsxcore/new_dynarec/backends/psx/emu_if.o \
110                 libpcsxcore/new_dynarec/new_dynarec.o \
111                 libpcsxcore/new_dynarec/arm/linkage_arm.o \
112                 libpcsxcore/new_dynarec/backends/psx/pcsxmem.o
113 libpcsxcore/new_dynarec/new_dynarec.o: libpcsxcore/new_dynarec/arm/assem_arm.c \
114         libpcsxcore/new_dynarec/backends/psx/pcsxmem_inline.c
115 else
116 OBJS += libpcsxcore/new_dynarec/backends/psx/emu_if.o
117 libpcsxcore/new_dynarec/backends/psx/emu_if.o: CFLAGS += -DDRC_DISABLE
118 frontend/libretro.o: CFLAGS += -DDRC_DISABLE
119 endif
120 ifdef DRC_DBG
121 libpcsxcore/new_dynarec/backends/psx/emu_if.o: CFLAGS += -D_FILE_OFFSET_BITS=64
122 CFLAGS += -DDRC_DBG
123 endif
124 ifeq "$(DRC_CACHE_BASE)" "1"
125 libpcsxcore/new_dynarec/%.o: CFLAGS += -DBASE_ADDR_FIXED=1
126 libpcsxcore/new_dynarec/backends/psx/%.o: CFLAGS += -DBASE_ADDR_FIXED=1
127 libpcsxcore/new_dynarec/arm/%.o: CFLAGS += -DBASE_ADDR_FIXED=1
128 endif
129
130 # spu
131 OBJS += plugins/dfsound/dma.o plugins/dfsound/freeze.o \
132         plugins/dfsound/registers.o plugins/dfsound/spu.o \
133         plugins/dfsound/out.o plugins/dfsound/nullsnd.o
134 plugins/dfsound/spu.o: plugins/dfsound/adsr.c plugins/dfsound/reverb.c \
135         plugins/dfsound/xa.c
136 ifeq "$(ARCH)" "arm"
137 OBJS += plugins/dfsound/arm_utils.o
138 endif
139 ifeq "$(HAVE_C64_TOOLS)" "1"
140 plugins/dfsound/spu.o: CFLAGS += -DC64X_DSP
141 plugins/dfsound/spu.o: plugins/dfsound/spu_c64x.c
142 frontend/menu.o: CFLAGS += -DC64X_DSP
143 endif
144 ifneq ($(findstring oss,$(SOUND_DRIVERS)),)
145 plugins/dfsound/out.o: CFLAGS += -DHAVE_OSS
146 OBJS += plugins/dfsound/oss.o
147 endif
148 ifneq ($(findstring alsa,$(SOUND_DRIVERS)),)
149 plugins/dfsound/out.o: CFLAGS += -DHAVE_ALSA
150 OBJS += plugins/dfsound/alsa.o
151 LDLIBS += -lasound
152 endif
153 ifneq ($(findstring sdl,$(SOUND_DRIVERS)),)
154 plugins/dfsound/out.o: CFLAGS += -DHAVE_SDL
155 OBJS += plugins/dfsound/sdl.o
156 endif
157 ifneq ($(findstring pulseaudio,$(SOUND_DRIVERS)),)
158 plugins/dfsound/out.o: CFLAGS += -DHAVE_PULSE
159 OBJS += plugins/dfsound/pulseaudio.o
160 endif
161 ifneq ($(findstring libretro,$(SOUND_DRIVERS)),)
162 plugins/dfsound/out.o: CFLAGS += -DHAVE_LIBRETRO
163 endif
164
165 # builtin gpu
166 OBJS += plugins/gpulib/gpu.o plugins/gpulib/vout_pl.o
167 ifeq "$(BUILTIN_GPU)" "neon"
168 CFLAGS += -DGPU_NEON
169 OBJS += plugins/gpu_neon/psx_gpu_if.o
170 ifeq "$(HAVE_NEON)" "1"
171 OBJS += plugins/gpu_neon/psx_gpu/psx_gpu_arm_neon.o
172 plugins/gpu_neon/psx_gpu_if.o: CFLAGS += -DNEON_BUILD -DTEXTURE_CACHE_4BPP -DTEXTURE_CACHE_8BPP
173 else
174 plugins/gpu_neon/psx_gpu_if.o: CFLAGS += -DTEXTURE_CACHE_4BPP -DTEXTURE_CACHE_8BPP
175 endif
176 plugins/gpu_neon/psx_gpu_if.o: plugins/gpu_neon/psx_gpu/*.c
177 endif
178 ifeq "$(BUILTIN_GPU)" "peops"
179 CFLAGS += -DGPU_PEOPS
180 # note: code is not safe for strict-aliasing? (Castlevania problems)
181 plugins/dfxvideo/gpulib_if.o: CFLAGS += -fno-strict-aliasing
182 plugins/dfxvideo/gpulib_if.o: plugins/dfxvideo/prim.c plugins/dfxvideo/soft.c
183 OBJS += plugins/dfxvideo/gpulib_if.o
184 ifeq "$(THREAD_RENDERING)" "1"
185 CFLAGS += -DTHREAD_RENDERING
186 OBJS += plugins/gpulib/gpulib_thread_if.o
187 endif
188 endif
189 ifeq "$(BUILTIN_GPU)" "unai"
190 CFLAGS += -DGPU_UNAI
191 CFLAGS += -DUSE_GPULIB=1
192 #CFLAGS += -DINLINE="static __inline__"
193 #CFLAGS += -Dasm="__asm__ __volatile__"
194 OBJS += plugins/gpu_unai/gpulib_if.o
195 ifeq "$(ARCH)" "arm"
196 OBJS += plugins/gpu_unai/gpu_arm.o
197 endif
198 ifeq "$(THREAD_RENDERING)" "1"
199 CFLAGS += -DTHREAD_RENDERING
200 OBJS += plugins/gpulib/gpulib_thread_if.o
201 endif
202 plugins/gpu_unai/gpulib_if.o: CFLAGS += -DREARMED -O3 
203 CC_LINK = $(CXX)
204 endif
205
206 # cdrcimg
207 OBJS += plugins/cdrcimg/cdrcimg.o
208
209 # libchdr
210 ifeq "$(HAVE_CHD)" "1"
211 CFLAGS += -Ideps/libchdr/include
212 CFLAGS += -Ideps/libchdr/include/libchdr
213 OBJS += deps/libchdr/deps/lzma-19.00/src/Alloc.o
214 OBJS += deps/libchdr/deps/lzma-19.00/src/Bra86.o
215 OBJS += deps/libchdr/deps/lzma-19.00/src/BraIA64.o
216 OBJS += deps/libchdr/deps/lzma-19.00/src/CpuArch.o
217 OBJS += deps/libchdr/deps/lzma-19.00/src/Delta.o
218 OBJS += deps/libchdr/deps/lzma-19.00/src/LzFind.o
219 OBJS += deps/libchdr/deps/lzma-19.00/src/Lzma86Dec.o
220 OBJS += deps/libchdr/deps/lzma-19.00/src/LzmaDec.o
221 OBJS += deps/libchdr/deps/lzma-19.00/src/LzmaEnc.o
222 OBJS += deps/libchdr/deps/lzma-19.00/src/Sort.o
223 OBJS += deps/libchdr/src/libchdr_bitstream.o
224 OBJS += deps/libchdr/src/libchdr_cdrom.o
225 OBJS += deps/libchdr/src/libchdr_chd.o
226 OBJS += deps/libchdr/src/libchdr_flac.o
227 OBJS += deps/libchdr/src/libchdr_huffman.o
228 CFLAGS += -Ideps/libchdr/deps/lzma-19.00/include
229 CFLAGS += -DHAVE_CHD -D_7ZIP_ST
230 LDFLAGS += -lm
231 endif
232
233 # dfinput
234 ifneq "$(PLATFORM)" "libretro"
235 OBJS += plugins/dfinput/main.o plugins/dfinput/pad.o plugins/dfinput/guncon.o
236 endif
237
238 # frontend/gui
239 OBJS += frontend/cspace.o
240 ifeq "$(HAVE_NEON)" "1"
241 OBJS += frontend/cspace_neon.o
242 else
243 ifeq "$(ARCH)" "arm"
244 OBJS += frontend/cspace_arm.o
245 endif
246 endif
247
248 ifeq "$(PLATFORM)" "generic"
249 OBJS += frontend/libpicofe/in_sdl.o
250 OBJS += frontend/libpicofe/plat_sdl.o
251 OBJS += frontend/libpicofe/plat_dummy.o
252 OBJS += frontend/libpicofe/linux/in_evdev.o
253 OBJS += frontend/plat_sdl.o
254 ifeq "$(HAVE_GLES)" "1"
255 OBJS += frontend/libpicofe/gl.o frontend/libpicofe/gl_platform.o
256 LDLIBS += $(LDLIBS_GLES)
257 frontend/libpicofe/plat_sdl.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES)
258 frontend/libpicofe/gl_platform.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES)
259 frontend/libpicofe/gl.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES)
260 frontend/plat_sdl.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES)
261 endif
262 USE_PLUGIN_LIB = 1
263 USE_FRONTEND = 1
264 endif
265 ifeq "$(PLATFORM)" "pandora"
266 OBJS += frontend/libpicofe/pandora/plat.o
267 OBJS += frontend/libpicofe/linux/fbdev.o frontend/libpicofe/linux/xenv.o
268 OBJS += frontend/libpicofe/linux/in_evdev.o
269 OBJS += frontend/plat_pandora.o frontend/plat_omap.o
270 frontend/main.o frontend/menu.o: CFLAGS += -include frontend/pandora/ui_feat.h
271 frontend/libpicofe/linux/plat.o: CFLAGS += -DPANDORA
272 USE_PLUGIN_LIB = 1
273 USE_FRONTEND = 1
274 endif
275 ifeq "$(PLATFORM)" "caanoo"
276 OBJS += frontend/libpicofe/gp2x/in_gp2x.o frontend/warm/warm.o
277 OBJS += frontend/libpicofe/gp2x/soc_pollux.o
278 OBJS += frontend/libpicofe/linux/in_evdev.o
279 OBJS += frontend/plat_pollux.o frontend/in_tsbutton.o frontend/blit320.o
280 frontend/main.o frontend/menu.o: CFLAGS += -include frontend/320240/ui_gp2x.h
281 USE_PLUGIN_LIB = 1
282 USE_FRONTEND = 1
283 endif
284 ifeq "$(PLATFORM)" "maemo"
285 OBJS += maemo/hildon.o maemo/main.o maemo/maemo_xkb.o frontend/pl_gun_ts.o
286 maemo/%.o: maemo/%.c
287 USE_PLUGIN_LIB = 1
288 LDFLAGS += $(shell pkg-config --libs hildon-1 libpulse)
289 CFLAGS += $(shell pkg-config --cflags hildon-1) -DHAVE_TSLIB
290 CFLAGS += `pkg-config --cflags glib-2.0 libosso dbus-1 hildon-fm-2`
291 LDFLAGS += `pkg-config --libs glib-2.0 libosso dbus-1 hildon-fm-2`
292 endif
293 ifeq "$(PLATFORM)" "libretro"
294 ifeq "$(USE_LIBRETRO_VFS)" "1"
295 OBJS += libretro-common/compat/compat_posix_string.o
296 OBJS += libretro-common/compat/fopen_utf8.o
297 OBJS += libretro-common/encodings/compat_strl.o
298 OBJS += libretro-common/encodings/encoding_utf.o
299 OBJS += libretro-common/file/file_path.o
300 OBJS += libretro-common/streams/file_stream.o
301 OBJS += libretro-common/streams/file_stream_transforms.o
302 OBJS += libretro-common/string/stdstring.o
303 OBJS += libretro-common/time/rtime.o
304 OBJS += libretro-common/vfs/vfs_implementation.o
305 CFLAGS += -DUSE_LIBRETRO_VFS
306 endif
307 OBJS += frontend/libretro.o
308 CFLAGS += -Ilibretro-common/include
309 CFLAGS += -DFRONTEND_SUPPORTS_RGB565
310 CFLAGS += -DHAVE_LIBRETRO
311
312 ifneq ($(DYNAREC),lightrec)
313 ifeq ($(MMAP_WIN32),1)
314 OBJS += libpcsxcore/memmap_win32.o
315 endif
316 endif
317 endif
318
319 ifeq "$(USE_PLUGIN_LIB)" "1"
320 OBJS += frontend/plugin_lib.o
321 OBJS += frontend/libpicofe/linux/plat.o
322 OBJS += frontend/libpicofe/readpng.o frontend/libpicofe/fonts.o
323 ifeq "$(HAVE_NEON)" "1"
324 OBJS += frontend/libpicofe/arm/neon_scale2x.o
325 OBJS += frontend/libpicofe/arm/neon_eagle2x.o
326 frontend/libpicofe/arm/neon_scale2x.o: CFLAGS += -DDO_BGR_TO_RGB
327 frontend/libpicofe/arm/neon_eagle2x.o: CFLAGS += -DDO_BGR_TO_RGB
328 endif
329 endif
330 ifeq "$(USE_FRONTEND)" "1"
331 OBJS += frontend/menu.o
332 OBJS += frontend/libpicofe/input.o
333 frontend/menu.o: frontend/libpicofe/menu.c
334 ifeq "$(HAVE_TSLIB)" "1"
335 frontend/%.o: CFLAGS += -DHAVE_TSLIB
336 OBJS += frontend/pl_gun_ts.o
337 endif
338 else
339 CFLAGS += -DNO_FRONTEND
340 endif
341
342 # misc
343 OBJS += frontend/main.o frontend/plugin.o
344
345
346 frontend/menu.o frontend/main.o: frontend/revision.h
347 frontend/plat_sdl.o frontend/libretro.o: frontend/revision.h
348
349 frontend/libpicofe/%.c:
350         @echo "libpicofe module is missing, please run:"
351         @echo "git submodule init && git submodule update"
352         @exit 1
353
354 libpcsxcore/gte_nf.o: libpcsxcore/gte.c
355         $(CC) -c -o $@ $^ $(CFLAGS) -DFLAGLESS
356
357 frontend/revision.h: FORCE
358         @(git describe || echo) | sed -e 's/.*/#define REV "\0"/' > $@_
359         @diff -q $@_ $@ > /dev/null 2>&1 || cp $@_ $@
360         @rm $@_
361
362 %.o: %.S
363         $(CC_AS) $(CFLAGS) -c $^ -o $@
364
365 %.o: %.cpp
366         $(CXX) $(CXXFLAGS) -c -o $@ $<
367
368 %.o: %.c
369         $(CC) $(CFLAGS) -c -o $@ $<
370
371 target_: $(TARGET)
372
373 $(TARGET): $(OBJS)
374 ifeq ($(STATIC_LINKING), 1)
375         $(AR) rcs $@ $(OBJS)
376 else
377         $(CC_LINK) -o $@ $^ $(LDFLAGS) $(LDLIBS) $(EXTRA_LDFLAGS)
378 endif
379
380 clean: $(PLAT_CLEAN) clean_plugins
381         $(RM) $(TARGET) $(OBJS) $(TARGET).map frontend/revision.h
382
383 ifneq ($(PLUGINS),)
384 plugins_: $(PLUGINS)
385
386 $(PLUGINS):
387         make -C $(dir $@)
388
389 clean_plugins:
390         make -C plugins/gpulib/ clean
391         for dir in $(PLUGINS) ; do \
392                 $(MAKE) -C $$(dirname $$dir) clean; done
393 else
394 plugins_:
395 clean_plugins:
396 endif
397
398 .PHONY: all clean target_ plugins_ clean_plugins FORCE
399
400 # ----------- release -----------
401
402 VER ?= $(shell git describe HEAD)
403
404 ifeq "$(PLATFORM)" "generic"
405 OUT = pcsx_rearmed_$(VER)
406
407 rel: pcsx $(PLUGINS) \
408                 frontend/pandora/skin readme.txt COPYING
409         rm -rf $(OUT)
410         mkdir -p $(OUT)/plugins
411         mkdir -p $(OUT)/bios
412         cp -r $^ $(OUT)/
413         mv $(OUT)/*.so* $(OUT)/plugins/
414         zip -9 -r $(OUT).zip $(OUT)
415 endif
416
417 ifeq "$(PLATFORM)" "pandora"
418 PND_MAKE ?= $(HOME)/dev/pnd/src/pandora-libraries/testdata/scripts/pnd_make.sh
419
420 rel: pcsx plugins/dfsound/pcsxr_spu_area3.out $(PLUGINS) \
421                 frontend/pandora/pcsx.sh frontend/pandora/pcsx.pxml.templ frontend/pandora/pcsx.png \
422                 frontend/pandora/picorestore frontend/pandora/skin readme.txt COPYING
423         rm -rf out
424         mkdir -p out/plugins
425         cp -r $^ out/
426         sed -e 's/%PR%/$(VER)/g' out/pcsx.pxml.templ > out/pcsx.pxml
427         rm out/pcsx.pxml.templ
428         mv out/*.so out/plugins/
429         $(PND_MAKE) -p pcsx_rearmed_$(VER).pnd -d out -x out/pcsx.pxml -i frontend/pandora/pcsx.png -c
430 endif
431
432 ifeq "$(PLATFORM)" "caanoo"
433 PLAT_CLEAN = caanoo_clean
434
435 caanoo_clean:
436         $(RM) frontend/320240/pollux_set
437
438 rel: pcsx $(PLUGINS) \
439                 frontend/320240/caanoo.gpe frontend/320240/pcsx26.png \
440                 frontend/320240/pcsxb.png frontend/320240/skin \
441                 frontend/warm/bin/warm_2.6.24.ko frontend/320240/pollux_set \
442                 frontend/320240/pcsx_rearmed.ini frontend/320240/haptic_w.cfg \
443                 frontend/320240/haptic_s.cfg \
444                 readme.txt COPYING
445         rm -rf out
446         mkdir -p out/pcsx_rearmed/plugins
447         cp -r $^ out/pcsx_rearmed/
448         mv out/pcsx_rearmed/*.so out/pcsx_rearmed/plugins/
449         mv out/pcsx_rearmed/caanoo.gpe out/pcsx_rearmed/pcsx.gpe
450         mv out/pcsx_rearmed/pcsx_rearmed.ini out/
451         mkdir out/pcsx_rearmed/lib/
452         cp ./lib/libbz2.so.1 out/pcsx_rearmed/lib/
453         mkdir out/pcsx_rearmed/bios/
454         cd out && zip -9 -r ../pcsx_rearmed_$(VER)_caanoo.zip *
455 endif