Commit | Line | Data |
---|---|---|
4132e8ca | 1 | # Makefile for PCSX ReARMed |
a80ae4a0 | 2 | |
61bc6d40 | 3 | # default stuff goes here, so that config can override |
9aff1963 | 4 | TARGET ?= pcsx |
9b400da1 | 5 | CFLAGS += -Wall -Iinclude -ffast-math |
6 | ifeq ($(DEBUG), 1) | |
0f97d2d8 | 7 | CFLAGS += -O0 -ggdb |
9b400da1 | 8 | else |
eca6163f | 9 | ifeq ($(platform), $(filter $(platform), vita ctr)) |
30373936 | 10 | CFLAGS += -O3 -DNDEBUG |
73081f23 | 11 | else |
cfbd3c6e | 12 | CFLAGS += -O2 -DNDEBUG |
b60f2812 | 13 | endif |
73081f23 | 14 | endif |
61bc6d40 | 15 | CXXFLAGS += $(CFLAGS) |
4132e8ca | 16 | #DRC_DBG = 1 |
17 | #PCNT = 1 | |
80c2304e | 18 | |
38c2028e | 19 | all: config.mak target_ plugins_ |
de38f20e | 20 | |
9aff1963 | 21 | ifndef NO_CONFIG_MAK |
4132e8ca | 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 | |
9aff1963 | 32 | else # NO_CONFIG_MAK |
33 | config.mak: | |
34 | endif | |
35 | ||
4132e8ca | 36 | -include Makefile.local |
80c2304e | 37 | |
9aff1963 | 38 | CC_LINK ?= $(CC) |
39 | CC_AS ?= $(CC) | |
22fa3f2b | 40 | LDFLAGS += $(MAIN_LDFLAGS) |
9aff1963 | 41 | EXTRA_LDFLAGS ?= -Wl,-Map=$@.map |
07c13dfd | 42 | LDLIBS += $(MAIN_LDLIBS) |
e0aec5ee | 43 | ifdef PCNT |
44 | CFLAGS += -DPCNT | |
45 | endif | |
61bc6d40 | 46 | |
80c2304e | 47 | # core |
48 | OBJS += libpcsxcore/cdriso.o libpcsxcore/cdrom.o libpcsxcore/cheat.o libpcsxcore/debug.o \ | |
3ebefe71 | 49 | libpcsxcore/decode_xa.o libpcsxcore/disr3000a.o libpcsxcore/mdec.o \ |
80c2304e | 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 | |
59774ed0 | 54 | OBJS += libpcsxcore/gte.o libpcsxcore/gte_nf.o libpcsxcore/gte_divider.o |
7795edd6 | 55 | ifeq ($(WANT_ZLIB),1) |
bab9a272 | 56 | CFLAGS += -Ideps/zlib |
7795edd6 JAS |
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 | |
59774ed0 | 72 | ifeq "$(ARCH)" "arm" |
73 | OBJS += libpcsxcore/gte_arm.o | |
74 | endif | |
a80ae4a0 | 75 | ifeq "$(HAVE_NEON)" "1" |
8cfbda97 | 76 | OBJS += libpcsxcore/gte_neon.o |
77 | endif | |
305c8c93 | 78 | libpcsxcore/psxbios.o: CFLAGS += -Wno-nonnull |
ab948f7e | 79 | |
f95a77f7 | 80 | # dynarec |
6f1edc3c PC |
81 | ifeq "$(DYNAREC)" "lightrec" |
82 | CFLAGS += -Ideps/lightning/include -Ideps/lightrec \ | |
1532f1b1 | 83 | -DLIGHTREC -DLIGHTREC_STATIC |
6f1edc3c PC |
84 | OBJS += libpcsxcore/lightrec/plugin.o |
85 | OBJS += deps/lightning/lib/jit_disasm.o \ | |
86 | deps/lightning/lib/jit_memory.o \ | |
87 | deps/lightning/lib/jit_names.o \ | |
88 | deps/lightning/lib/jit_note.o \ | |
89 | deps/lightning/lib/jit_print.o \ | |
90 | deps/lightning/lib/jit_size.o \ | |
91 | deps/lightning/lib/lightning.o \ | |
92 | deps/lightrec/blockcache.o \ | |
93 | deps/lightrec/disassembler.o \ | |
94 | deps/lightrec/emitter.o \ | |
95 | deps/lightrec/interpreter.o \ | |
96 | deps/lightrec/lightrec.o \ | |
97 | deps/lightrec/memmanager.o \ | |
98 | deps/lightrec/optimizer.o \ | |
99 | deps/lightrec/regcache.o \ | |
100 | deps/lightrec/recompiler.o | |
101 | ifeq ($(MMAP_WIN32),1) | |
1532f1b1 | 102 | CFLAGS += -Ideps/mman |
6f1edc3c PC |
103 | OBJS += deps/mman/mman.o |
104 | endif | |
105 | else ifeq "$(DYNAREC)" "ari64" | |
87cc59de | 106 | CFLAGS += -DNEW_DYNAREC |
6f1edc3c PC |
107 | OBJS += libpcsxcore/new_dynarec/backends/psx/emu_if.o \ |
108 | libpcsxcore/new_dynarec/new_dynarec.o \ | |
109 | libpcsxcore/new_dynarec/arm/linkage_arm.o \ | |
110 | libpcsxcore/new_dynarec/backends/psx/pcsxmem.o | |
111 | libpcsxcore/new_dynarec/new_dynarec.o: libpcsxcore/new_dynarec/arm/assem_arm.c \ | |
112 | libpcsxcore/new_dynarec/backends/psx/pcsxmem_inline.c | |
448bbcae | 113 | else |
b2627e51 | 114 | OBJS += libpcsxcore/new_dynarec/backends/psx/emu_if.o |
6f173b35 | 115 | libpcsxcore/new_dynarec/backends/psx/emu_if.o: CFLAGS += -DDRC_DISABLE |
48f615ba | 116 | frontend/libretro.o: CFLAGS += -DDRC_DISABLE |
7139f3c8 | 117 | endif |
3eb78778 | 118 | ifdef DRC_DBG |
6f173b35 | 119 | libpcsxcore/new_dynarec/backends/psx/emu_if.o: CFLAGS += -D_FILE_OFFSET_BITS=64 |
3eb78778 | 120 | CFLAGS += -DDRC_DBG |
121 | endif | |
4132e8ca | 122 | ifeq "$(DRC_CACHE_BASE)" "1" |
123 | libpcsxcore/new_dynarec/%.o: CFLAGS += -DBASE_ADDR_FIXED=1 | |
6f173b35 | 124 | libpcsxcore/new_dynarec/backends/psx/%.o: CFLAGS += -DBASE_ADDR_FIXED=1 |
125 | libpcsxcore/new_dynarec/arm/%.o: CFLAGS += -DBASE_ADDR_FIXED=1 | |
a327ad27 | 126 | endif |
f95a77f7 | 127 | |
e906c010 | 128 | # spu |
ee849648 | 129 | OBJS += plugins/dfsound/dma.o plugins/dfsound/freeze.o \ |
07c13dfd | 130 | plugins/dfsound/registers.o plugins/dfsound/spu.o \ |
131 | plugins/dfsound/out.o plugins/dfsound/nullsnd.o | |
6d866bb7 | 132 | plugins/dfsound/spu.o: plugins/dfsound/adsr.c plugins/dfsound/reverb.c \ |
133 | plugins/dfsound/xa.c | |
3a721c1f | 134 | ifeq "$(ARCH)" "arm" |
b17618c0 | 135 | OBJS += plugins/dfsound/arm_utils.o |
136 | endif | |
5514a050 | 137 | ifeq "$(HAVE_C64_TOOLS)" "1" |
138 | plugins/dfsound/spu.o: CFLAGS += -DC64X_DSP | |
139 | plugins/dfsound/spu.o: plugins/dfsound/spu_c64x.c | |
8886a808 | 140 | frontend/menu.o: CFLAGS += -DC64X_DSP |
5514a050 | 141 | endif |
07c13dfd | 142 | ifneq ($(findstring oss,$(SOUND_DRIVERS)),) |
143 | plugins/dfsound/out.o: CFLAGS += -DHAVE_OSS | |
de38f20e | 144 | OBJS += plugins/dfsound/oss.o |
145 | endif | |
07c13dfd | 146 | ifneq ($(findstring alsa,$(SOUND_DRIVERS)),) |
147 | plugins/dfsound/out.o: CFLAGS += -DHAVE_ALSA | |
de38f20e | 148 | OBJS += plugins/dfsound/alsa.o |
4132e8ca | 149 | LDLIBS += -lasound |
150 | endif | |
07c13dfd | 151 | ifneq ($(findstring sdl,$(SOUND_DRIVERS)),) |
152 | plugins/dfsound/out.o: CFLAGS += -DHAVE_SDL | |
d8a2f79b | 153 | OBJS += plugins/dfsound/sdl.o |
154 | endif | |
07c13dfd | 155 | ifneq ($(findstring pulseaudio,$(SOUND_DRIVERS)),) |
156 | plugins/dfsound/out.o: CFLAGS += -DHAVE_PULSE | |
157 | OBJS += plugins/dfsound/pulseaudio.o | |
158 | endif | |
159 | ifneq ($(findstring libretro,$(SOUND_DRIVERS)),) | |
160 | plugins/dfsound/out.o: CFLAGS += -DHAVE_LIBRETRO | |
de38f20e | 161 | endif |
162 | ||
61bc6d40 | 163 | # builtin gpu |
164 | OBJS += plugins/gpulib/gpu.o plugins/gpulib/vout_pl.o | |
61bc6d40 | 165 | ifeq "$(BUILTIN_GPU)" "neon" |
2d17de26 | 166 | CFLAGS += -DGPU_NEON |
1fce6ce8 | 167 | OBJS += plugins/gpu_neon/psx_gpu_if.o |
168 | ifeq "$(HAVE_NEON)" "1" | |
169 | OBJS += plugins/gpu_neon/psx_gpu/psx_gpu_arm_neon.o | |
90ca4913 | 170 | plugins/gpu_neon/psx_gpu_if.o: CFLAGS += -DNEON_BUILD -DTEXTURE_CACHE_4BPP -DTEXTURE_CACHE_8BPP |
1fce6ce8 | 171 | else |
172 | plugins/gpu_neon/psx_gpu_if.o: CFLAGS += -DTEXTURE_CACHE_4BPP -DTEXTURE_CACHE_8BPP | |
173 | endif | |
90ca4913 | 174 | plugins/gpu_neon/psx_gpu_if.o: plugins/gpu_neon/psx_gpu/*.c |
61bc6d40 | 175 | endif |
176 | ifeq "$(BUILTIN_GPU)" "peops" | |
2d17de26 | 177 | CFLAGS += -DGPU_PEOPS |
2ef486ee | 178 | # note: code is not safe for strict-aliasing? (Castlevania problems) |
62d7fa95 | 179 | plugins/dfxvideo/gpulib_if.o: CFLAGS += -fno-strict-aliasing |
180 | plugins/dfxvideo/gpulib_if.o: plugins/dfxvideo/prim.c plugins/dfxvideo/soft.c | |
181 | OBJS += plugins/dfxvideo/gpulib_if.o | |
90ca4913 | 182 | endif |
61bc6d40 | 183 | ifeq "$(BUILTIN_GPU)" "unai" |
2d17de26 | 184 | CFLAGS += -DGPU_UNAI |
030d1121 | 185 | CFLAGS += -DUSE_GPULIB=1 |
186 | #CFLAGS += -DINLINE="static __inline__" | |
187 | #CFLAGS += -Dasm="__asm__ __volatile__" | |
61bc6d40 | 188 | OBJS += plugins/gpu_unai/gpulib_if.o |
189 | ifeq "$(ARCH)" "arm" | |
190 | OBJS += plugins/gpu_unai/gpu_arm.o | |
191 | endif | |
46aa5b98 | 192 | plugins/gpu_unai/gpulib_if.o: CFLAGS += -DREARMED -O3 |
61bc6d40 | 193 | CC_LINK = $(CXX) |
b60f2812 | 194 | endif |
e0c692d9 | 195 | |
47bf65ab | 196 | # cdrcimg |
47bf65ab | 197 | OBJS += plugins/cdrcimg/cdrcimg.o |
e906c010 | 198 | |
ce188d4d | 199 | # libchdr |
b0ec2e6d | 200 | ifeq "$(HAVE_CHD)" "1" |
ce188d4d | 201 | CFLAGS += -Ideps/libchdr |
202 | OBJS += deps/crypto/md5.o | |
203 | OBJS += deps/crypto/sha1.o | |
204 | OBJS += deps/flac-1.3.2/src/libFLAC/bitmath.o | |
205 | OBJS += deps/flac-1.3.2/src/libFLAC/bitreader.o | |
206 | OBJS += deps/flac-1.3.2/src/libFLAC/cpu.o | |
207 | OBJS += deps/flac-1.3.2/src/libFLAC/crc.o | |
208 | OBJS += deps/flac-1.3.2/src/libFLAC/fixed.o | |
209 | OBJS += deps/flac-1.3.2/src/libFLAC/fixed_intrin_sse2.o | |
210 | OBJS += deps/flac-1.3.2/src/libFLAC/fixed_intrin_ssse3.o | |
211 | OBJS += deps/flac-1.3.2/src/libFLAC/float.o | |
212 | OBJS += deps/flac-1.3.2/src/libFLAC/format.o | |
213 | OBJS += deps/flac-1.3.2/src/libFLAC/lpc.o | |
214 | OBJS += deps/flac-1.3.2/src/libFLAC/lpc_intrin_avx2.o | |
215 | OBJS += deps/flac-1.3.2/src/libFLAC/lpc_intrin_sse2.o | |
216 | OBJS += deps/flac-1.3.2/src/libFLAC/lpc_intrin_sse41.o | |
217 | OBJS += deps/flac-1.3.2/src/libFLAC/lpc_intrin_sse.o | |
218 | OBJS += deps/flac-1.3.2/src/libFLAC/md5.o | |
219 | OBJS += deps/flac-1.3.2/src/libFLAC/memory.o | |
220 | OBJS += deps/flac-1.3.2/src/libFLAC/metadata_iterators.o | |
221 | OBJS += deps/flac-1.3.2/src/libFLAC/metadata_object.o | |
222 | OBJS += deps/flac-1.3.2/src/libFLAC/stream_decoder.o | |
223 | OBJS += deps/flac-1.3.2/src/libFLAC/window.o | |
224 | OBJS += deps/lzma-16.04/C/Alloc.o | |
225 | OBJS += deps/lzma-16.04/C/Bra86.o | |
226 | OBJS += deps/lzma-16.04/C/Bra.o | |
227 | OBJS += deps/lzma-16.04/C/BraIA64.o | |
228 | OBJS += deps/lzma-16.04/C/CpuArch.o | |
229 | OBJS += deps/lzma-16.04/C/Delta.o | |
230 | OBJS += deps/lzma-16.04/C/LzFind.o | |
231 | OBJS += deps/lzma-16.04/C/Lzma86Dec.o | |
232 | OBJS += deps/lzma-16.04/C/Lzma86Enc.o | |
233 | OBJS += deps/lzma-16.04/C/LzmaDec.o | |
234 | OBJS += deps/lzma-16.04/C/LzmaEnc.o | |
235 | OBJS += deps/lzma-16.04/C/LzmaLib.o | |
236 | OBJS += deps/lzma-16.04/C/Sort.o | |
237 | OBJS += deps/libchdr/bitstream.o | |
238 | OBJS += deps/libchdr/cdrom.o | |
239 | OBJS += deps/libchdr/chd.o | |
240 | OBJS += deps/libchdr/flac.o | |
241 | OBJS += deps/libchdr/huffman.o | |
242 | ||
243 | ifneq (,$(findstring win,$(platform))) | |
31aa18dd | 244 | CFLAGS += -DHAVE_FSEEKO |
ce188d4d | 245 | OBJS += deps/flac-1.3.2/src/libFLAC/windows_unicode_filenames.o |
246 | else | |
247 | CFLAGS += -DHAVE_SYS_PARAM_H | |
248 | endif | |
249 | ||
250 | 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 | |
b0ec2e6d | 251 | 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 |
ce188d4d | 252 | LDFLAGS += -lm |
b0ec2e6d | 253 | endif |
ce188d4d | 254 | |
384f5f43 | 255 | # dfinput |
4c08b9e7 | 256 | OBJS += plugins/dfinput/main.o plugins/dfinput/pad.o plugins/dfinput/guncon.o |
384f5f43 | 257 | |
cc56203b | 258 | # frontend/gui |
c82f907a | 259 | OBJS += frontend/cspace.o |
260 | ifeq "$(HAVE_NEON)" "1" | |
261 | OBJS += frontend/cspace_neon.o | |
d57557c0 | 262 | else |
263 | ifeq "$(ARCH)" "arm" | |
264 | OBJS += frontend/cspace_arm.o | |
265 | endif | |
c82f907a | 266 | endif |
267 | ||
4132e8ca | 268 | ifeq "$(PLATFORM)" "generic" |
5b9aa749 | 269 | OBJS += frontend/libpicofe/in_sdl.o |
270 | OBJS += frontend/libpicofe/plat_sdl.o | |
cc56203b | 271 | OBJS += frontend/libpicofe/plat_dummy.o |
272 | OBJS += frontend/libpicofe/linux/in_evdev.o | |
5b9aa749 | 273 | OBJS += frontend/plat_sdl.o |
274 | ifeq "$(HAVE_GLES)" "1" | |
2c616080 | 275 | OBJS += frontend/libpicofe/gl.o frontend/libpicofe/gl_platform.o |
5b9aa749 | 276 | LDLIBS += $(LDLIBS_GLES) |
277 | frontend/libpicofe/plat_sdl.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES) | |
2c616080 | 278 | frontend/libpicofe/gl_platform.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES) |
5b9aa749 | 279 | frontend/libpicofe/gl.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES) |
280 | frontend/plat_sdl.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES) | |
281 | endif | |
cc56203b | 282 | USE_PLUGIN_LIB = 1 |
38c2028e | 283 | USE_FRONTEND = 1 |
4132e8ca | 284 | endif |
55b0eeea | 285 | ifeq "$(PLATFORM)" "pandora" |
cc56203b | 286 | OBJS += frontend/libpicofe/pandora/plat.o |
287 | OBJS += frontend/libpicofe/linux/fbdev.o frontend/libpicofe/linux/xenv.o | |
288 | OBJS += frontend/libpicofe/linux/in_evdev.o | |
289 | OBJS += frontend/plat_pandora.o frontend/plat_omap.o | |
da710571 | 290 | frontend/main.o frontend/menu.o: CFLAGS += -include frontend/pandora/ui_feat.h |
3aba4185 | 291 | frontend/libpicofe/linux/plat.o: CFLAGS += -DPANDORA |
cc56203b | 292 | USE_PLUGIN_LIB = 1 |
38c2028e | 293 | USE_FRONTEND = 1 |
4132e8ca | 294 | endif |
55b0eeea | 295 | ifeq "$(PLATFORM)" "caanoo" |
cc56203b | 296 | OBJS += frontend/libpicofe/gp2x/in_gp2x.o frontend/warm/warm.o |
297 | OBJS += frontend/libpicofe/gp2x/soc_pollux.o | |
298 | OBJS += frontend/libpicofe/linux/in_evdev.o | |
faf2b2aa | 299 | OBJS += frontend/plat_pollux.o frontend/in_tsbutton.o frontend/blit320.o |
da710571 | 300 | frontend/main.o frontend/menu.o: CFLAGS += -include frontend/320240/ui_gp2x.h |
cc56203b | 301 | USE_PLUGIN_LIB = 1 |
38c2028e | 302 | USE_FRONTEND = 1 |
303 | endif | |
304 | ifeq "$(PLATFORM)" "maemo" | |
baaef67b | 305 | OBJS += maemo/hildon.o maemo/main.o maemo/maemo_xkb.o frontend/pl_gun_ts.o |
38c2028e | 306 | maemo/%.o: maemo/%.c |
cc56203b | 307 | USE_PLUGIN_LIB = 1 |
a76fd953 | 308 | LDFLAGS += $(shell pkg-config --libs hildon-1 libpulse) |
7010034e | 309 | CFLAGS += $(shell pkg-config --cflags hildon-1) -DHAVE_TSLIB |
a76fd953 PI |
310 | CFLAGS += `pkg-config --cflags glib-2.0 libosso dbus-1 hildon-fm-2` |
311 | LDFLAGS += `pkg-config --libs glib-2.0 libosso dbus-1 hildon-fm-2` | |
38c2028e | 312 | endif |
313 | ifeq "$(PLATFORM)" "libretro" | |
314 | OBJS += frontend/libretro.o | |
919cac88 | 315 | CFLAGS += -Ilibretro-common/include |
46aa5b98 | 316 | CFLAGS += -DFRONTEND_SUPPORTS_RGB565 |
f40e483e | 317 | CFLAGS += -DHAVE_LIBRETRO |
ce0e7ac9 | 318 | |
6f1edc3c | 319 | ifneq ($(DYNAREC),lightrec) |
ce0e7ac9 | 320 | ifeq ($(MMAP_WIN32),1) |
321 | OBJS += libpcsxcore/memmap_win32.o | |
322 | endif | |
38c2028e | 323 | endif |
6f1edc3c | 324 | endif |
cc56203b | 325 | |
326 | ifeq "$(USE_PLUGIN_LIB)" "1" | |
38c2028e | 327 | OBJS += frontend/plugin_lib.o |
cc56203b | 328 | OBJS += frontend/libpicofe/linux/plat.o |
329 | OBJS += frontend/libpicofe/readpng.o frontend/libpicofe/fonts.o | |
330 | ifeq "$(HAVE_NEON)" "1" | |
331 | OBJS += frontend/libpicofe/arm/neon_scale2x.o | |
332 | OBJS += frontend/libpicofe/arm/neon_eagle2x.o | |
333 | frontend/libpicofe/arm/neon_scale2x.o: CFLAGS += -DDO_BGR_TO_RGB | |
334 | frontend/libpicofe/arm/neon_eagle2x.o: CFLAGS += -DDO_BGR_TO_RGB | |
335 | endif | |
336 | endif | |
337 | ifeq "$(USE_FRONTEND)" "1" | |
338 | OBJS += frontend/menu.o | |
339 | OBJS += frontend/libpicofe/input.o | |
340 | frontend/menu.o: frontend/libpicofe/menu.c | |
38c2028e | 341 | ifeq "$(HAVE_TSLIB)" "1" |
342 | frontend/%.o: CFLAGS += -DHAVE_TSLIB | |
343 | OBJS += frontend/pl_gun_ts.o | |
344 | endif | |
345 | else | |
346 | CFLAGS += -DNO_FRONTEND | |
55b0eeea | 347 | endif |
a80ae4a0 | 348 | |
cc56203b | 349 | # misc |
350 | OBJS += frontend/main.o frontend/plugin.o | |
351 | ||
e0aec5ee | 352 | |
a1a232ad | 353 | frontend/menu.o frontend/main.o: frontend/revision.h |
354 | frontend/plat_sdl.o frontend/libretro.o: frontend/revision.h | |
3c70c47b | 355 | |
cc56203b | 356 | frontend/libpicofe/%.c: |
fa56d360 | 357 | @echo "libpicofe module is missing, please run:" |
358 | @echo "git submodule init && git submodule update" | |
359 | @exit 1 | |
360 | ||
59774ed0 | 361 | libpcsxcore/gte_nf.o: libpcsxcore/gte.c |
362 | $(CC) -c -o $@ $^ $(CFLAGS) -DFLAGLESS | |
363 | ||
3c70c47b | 364 | frontend/revision.h: FORCE |
365 | @(git describe || echo) | sed -e 's/.*/#define REV "\0"/' > $@_ | |
366 | @diff -q $@_ $@ > /dev/null 2>&1 || cp $@_ $@ | |
367 | @rm $@_ | |
3c70c47b | 368 | |
90ca4913 | 369 | %.o: %.S |
9aff1963 | 370 | $(CC_AS) $(CFLAGS) -c $^ -o $@ |
80c2304e | 371 | |
fc99395c | 372 | %.o: %.cpp |
373 | $(CXX) $(CXXFLAGS) -c -o $@ $< | |
374 | ||
7795edd6 JAS |
375 | %.o: %.c |
376 | $(CC) $(CFLAGS) -c -o $@ $< | |
e0aec5ee | 377 | |
38c2028e | 378 | target_: $(TARGET) |
379 | ||
80c2304e | 380 | $(TARGET): $(OBJS) |
fc99395c | 381 | ifeq ($(STATIC_LINKING), 1) |
382 | $(AR) rcs $@ $(OBJS) | |
383 | else | |
9aff1963 | 384 | $(CC_LINK) -o $@ $^ $(LDFLAGS) $(LDLIBS) $(EXTRA_LDFLAGS) |
fc99395c | 385 | endif |
80c2304e | 386 | |
dd4d5a35 | 387 | clean: $(PLAT_CLEAN) clean_plugins |
a1a232ad | 388 | $(RM) $(TARGET) $(OBJS) $(TARGET).map frontend/revision.h |
0d464c77 | 389 | |
4132e8ca | 390 | ifneq ($(PLUGINS),) |
dd4d5a35 | 391 | plugins_: $(PLUGINS) |
392 | ||
ee78346e | 393 | $(PLUGINS): |
394 | make -C $(dir $@) | |
f932e54b | 395 | |
ee78346e | 396 | clean_plugins: |
ea1f6f2f | 397 | make -C plugins/gpulib/ clean |
ee78346e | 398 | for dir in $(PLUGINS) ; do \ |
399 | $(MAKE) -C $$(dirname $$dir) clean; done | |
dd4d5a35 | 400 | else |
401 | plugins_: | |
402 | clean_plugins: | |
4132e8ca | 403 | endif |
80c2304e | 404 | |
fa56d360 | 405 | .PHONY: all clean target_ plugins_ clean_plugins FORCE |
406 | ||
303ee308 | 407 | # ----------- release ----------- |
408 | ||
cd5abe38 | 409 | VER ?= $(shell git describe HEAD) |
4132e8ca | 410 | |
dd4d5a35 | 411 | ifeq "$(PLATFORM)" "generic" |
412 | OUT = pcsx_rearmed_$(VER) | |
413 | ||
414 | rel: pcsx $(PLUGINS) \ | |
415 | frontend/pandora/skin readme.txt COPYING | |
416 | rm -rf $(OUT) | |
417 | mkdir -p $(OUT)/plugins | |
418 | mkdir -p $(OUT)/bios | |
419 | cp -r $^ $(OUT)/ | |
420 | mv $(OUT)/*.so* $(OUT)/plugins/ | |
421 | zip -9 -r $(OUT).zip $(OUT) | |
422 | endif | |
423 | ||
4132e8ca | 424 | ifeq "$(PLATFORM)" "pandora" |
303ee308 | 425 | PND_MAKE ?= $(HOME)/dev/pnd/src/pandora-libraries/testdata/scripts/pnd_make.sh |
426 | ||
8886a808 | 427 | rel: pcsx plugins/dfsound/pcsxr_spu_area3.out $(PLUGINS) \ |
9e0630ab | 428 | frontend/pandora/pcsx.sh frontend/pandora/pcsx.pxml.templ frontend/pandora/pcsx.png \ |
429 | frontend/pandora/picorestore frontend/pandora/skin readme.txt COPYING | |
303ee308 | 430 | rm -rf out |
bbd837c6 | 431 | mkdir -p out/plugins |
303ee308 | 432 | cp -r $^ out/ |
3938f69a | 433 | sed -e 's/%PR%/$(VER)/g' out/pcsx.pxml.templ > out/pcsx.pxml |
434 | rm out/pcsx.pxml.templ | |
bbd837c6 | 435 | mv out/*.so out/plugins/ |
9e0630ab | 436 | $(PND_MAKE) -p pcsx_rearmed_$(VER).pnd -d out -x out/pcsx.pxml -i frontend/pandora/pcsx.png -c |
4132e8ca | 437 | endif |
438 | ||
439 | ifeq "$(PLATFORM)" "caanoo" | |
440 | PLAT_CLEAN = caanoo_clean | |
441 | ||
442 | caanoo_clean: | |
443 | $(RM) frontend/320240/pollux_set | |
444 | ||
4132e8ca | 445 | rel: pcsx $(PLUGINS) \ |
446 | frontend/320240/caanoo.gpe frontend/320240/pcsx26.png \ | |
447 | frontend/320240/pcsxb.png frontend/320240/skin \ | |
448 | frontend/warm/bin/warm_2.6.24.ko frontend/320240/pollux_set \ | |
449 | frontend/320240/pcsx_rearmed.ini frontend/320240/haptic_w.cfg \ | |
450 | frontend/320240/haptic_s.cfg \ | |
451 | readme.txt COPYING | |
452 | rm -rf out | |
453 | mkdir -p out/pcsx_rearmed/plugins | |
454 | cp -r $^ out/pcsx_rearmed/ | |
4132e8ca | 455 | mv out/pcsx_rearmed/*.so out/pcsx_rearmed/plugins/ |
456 | mv out/pcsx_rearmed/caanoo.gpe out/pcsx_rearmed/pcsx.gpe | |
457 | mv out/pcsx_rearmed/pcsx_rearmed.ini out/ | |
458 | mkdir out/pcsx_rearmed/lib/ | |
459 | cp ./lib/libbz2.so.1 out/pcsx_rearmed/lib/ | |
460 | mkdir out/pcsx_rearmed/bios/ | |
461 | cd out && zip -9 -r ../pcsx_rearmed_$(VER)_caanoo.zip * | |
462 | endif |