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 | |
9361a5aa EC |
19 | # Suppress minor warnings for dependencies |
20 | deps/%: CFLAGS += -Wno-unused -Wno-unused-function | |
21 | ||
38c2028e | 22 | all: config.mak target_ plugins_ |
de38f20e | 23 | |
9aff1963 | 24 | ifndef NO_CONFIG_MAK |
4132e8ca | 25 | ifneq ($(wildcard config.mak),) |
26 | config.mak: ./configure | |
27 | @echo $@ is out-of-date, running configure | |
28 | @sed -n "/.*Configured with/s/[^:]*: //p" $@ | sh | |
29 | include config.mak | |
30 | else | |
31 | config.mak: | |
32 | @echo "Please run ./configure before running make!" | |
33 | @exit 1 | |
34 | endif | |
9aff1963 | 35 | else # NO_CONFIG_MAK |
36 | config.mak: | |
37 | endif | |
38 | ||
4132e8ca | 39 | -include Makefile.local |
80c2304e | 40 | |
9aff1963 | 41 | CC_LINK ?= $(CC) |
42 | CC_AS ?= $(CC) | |
22fa3f2b | 43 | LDFLAGS += $(MAIN_LDFLAGS) |
9aff1963 | 44 | EXTRA_LDFLAGS ?= -Wl,-Map=$@.map |
07c13dfd | 45 | LDLIBS += $(MAIN_LDLIBS) |
e0aec5ee | 46 | ifdef PCNT |
47 | CFLAGS += -DPCNT | |
48 | endif | |
61bc6d40 | 49 | |
80c2304e | 50 | # core |
630b122b | 51 | OBJS += libpcsxcore/cdriso.o libpcsxcore/cdrom.o libpcsxcore/cheat.o libpcsxcore/database.o \ |
11a43034 | 52 | libpcsxcore/decode_xa.o libpcsxcore/mdec.o \ |
80c2304e | 53 | libpcsxcore/misc.o libpcsxcore/plugins.o libpcsxcore/ppf.o libpcsxcore/psxbios.o \ |
54 | libpcsxcore/psxcommon.o libpcsxcore/psxcounters.o libpcsxcore/psxdma.o libpcsxcore/psxhle.o \ | |
55 | libpcsxcore/psxhw.o libpcsxcore/psxinterpreter.o libpcsxcore/psxmem.o libpcsxcore/r3000a.o \ | |
11a43034 | 56 | libpcsxcore/sio.o libpcsxcore/spu.o |
59774ed0 | 57 | OBJS += libpcsxcore/gte.o libpcsxcore/gte_nf.o libpcsxcore/gte_divider.o |
11a43034 | 58 | |
59 | ifeq ($(DEBUG), 1) | |
ee8fd567 | 60 | #OBJS += libpcsxcore/debug.o libpcsxcore/socket.o libpcsxcore/disr3000a.o |
11a43034 | 61 | endif |
62 | ||
7795edd6 | 63 | ifeq ($(WANT_ZLIB),1) |
f07738df | 64 | CFLAGS += -Ideps/libchdr/deps/zlib-1.2.11 |
65 | OBJS += deps/libchdr/deps/zlib-1.2.11/adler32.o \ | |
66 | deps/libchdr/deps/zlib-1.2.11/compress.o \ | |
67 | deps/libchdr/deps/zlib-1.2.11/crc32.o \ | |
68 | deps/libchdr/deps/zlib-1.2.11/deflate.o \ | |
69 | deps/libchdr/deps/zlib-1.2.11/gzclose.o \ | |
70 | deps/libchdr/deps/zlib-1.2.11/gzlib.o \ | |
71 | deps/libchdr/deps/zlib-1.2.11/gzread.o \ | |
72 | deps/libchdr/deps/zlib-1.2.11/gzwrite.o \ | |
73 | deps/libchdr/deps/zlib-1.2.11/infback.o \ | |
74 | deps/libchdr/deps/zlib-1.2.11/inffast.o \ | |
75 | deps/libchdr/deps/zlib-1.2.11/inflate.o \ | |
76 | deps/libchdr/deps/zlib-1.2.11/inftrees.o \ | |
77 | deps/libchdr/deps/zlib-1.2.11/trees.o \ | |
78 | deps/libchdr/deps/zlib-1.2.11/uncompr.o \ | |
79 | deps/libchdr/deps/zlib-1.2.11/zutil.o | |
7795edd6 | 80 | endif |
59774ed0 | 81 | ifeq "$(ARCH)" "arm" |
82 | OBJS += libpcsxcore/gte_arm.o | |
83 | endif | |
047899a4 | 84 | ifeq "$(HAVE_NEON_ASM)" "1" |
8cfbda97 | 85 | OBJS += libpcsxcore/gte_neon.o |
86 | endif | |
305c8c93 | 87 | libpcsxcore/psxbios.o: CFLAGS += -Wno-nonnull |
ab948f7e | 88 | |
f95a77f7 | 89 | # dynarec |
6f1edc3c | 90 | ifeq "$(DYNAREC)" "lightrec" |
d51bb08a | 91 | CFLAGS += -Ideps/lightning/include -Ideps/lightrec -Iinclude/lightning -Iinclude/lightrec \ |
2f609094 | 92 | -DLIGHTREC -DLIGHTREC_STATIC |
70939d49 | 93 | LIGHTREC_CUSTOM_MAP ?= 0 |
f4c049fd PC |
94 | LIGHTREC_THREADED_COMPILER ?= 0 |
95 | CFLAGS += -DLIGHTREC_CUSTOM_MAP=$(LIGHTREC_CUSTOM_MAP) \ | |
96 | -DLIGHTREC_ENABLE_THREADED_COMPILER=$(LIGHTREC_THREADED_COMPILER) | |
2f609094 | 97 | deps/lightning/lib/%.o: CFLAGS += -DHAVE_MMAP |
a093e81f | 98 | ifeq ($(LIGHTREC_CUSTOM_MAP),1) |
a017aca9 | 99 | LDLIBS += -lrt |
c6272d2a | 100 | OBJS += libpcsxcore/lightrec/mem.o |
a093e81f | 101 | endif |
f4c049fd PC |
102 | ifeq ($(LIGHTREC_THREADED_COMPILER),1) |
103 | OBJS += deps/lightrec/recompiler.o \ | |
104 | deps/lightrec/reaper.o | |
105 | endif | |
c6272d2a | 106 | OBJS += deps/lightrec/tlsf/tlsf.o |
6f1edc3c PC |
107 | OBJS += libpcsxcore/lightrec/plugin.o |
108 | OBJS += deps/lightning/lib/jit_disasm.o \ | |
109 | deps/lightning/lib/jit_memory.o \ | |
110 | deps/lightning/lib/jit_names.o \ | |
111 | deps/lightning/lib/jit_note.o \ | |
112 | deps/lightning/lib/jit_print.o \ | |
113 | deps/lightning/lib/jit_size.o \ | |
114 | deps/lightning/lib/lightning.o \ | |
115 | deps/lightrec/blockcache.o \ | |
9259d748 | 116 | deps/lightrec/constprop.o \ |
6f1edc3c PC |
117 | deps/lightrec/disassembler.o \ |
118 | deps/lightrec/emitter.o \ | |
119 | deps/lightrec/interpreter.o \ | |
120 | deps/lightrec/lightrec.o \ | |
121 | deps/lightrec/memmanager.o \ | |
122 | deps/lightrec/optimizer.o \ | |
f4c049fd | 123 | deps/lightrec/regcache.o |
a093e81f | 124 | libpcsxcore/lightrec/mem.o: CFLAGS += -D_GNU_SOURCE |
6f1edc3c | 125 | ifeq ($(MMAP_WIN32),1) |
6ce0b00a | 126 | CFLAGS += -Iinclude/mman -I deps/mman |
6f1edc3c PC |
127 | OBJS += deps/mman/mman.o |
128 | endif | |
129 | else ifeq "$(DYNAREC)" "ari64" | |
630b122b | 130 | OBJS += libpcsxcore/new_dynarec/new_dynarec.o |
131 | OBJS += libpcsxcore/new_dynarec/pcsxmem.o | |
132 | ifeq "$(ARCH)" "arm" | |
133 | OBJS += libpcsxcore/new_dynarec/linkage_arm.o | |
134 | libpcsxcore/new_dynarec/new_dynarec.o: libpcsxcore/new_dynarec/assem_arm.c | |
135 | else ifneq (,$(findstring $(ARCH),aarch64 arm64)) | |
136 | OBJS += libpcsxcore/new_dynarec/linkage_arm64.o | |
137 | libpcsxcore/new_dynarec/new_dynarec.o: libpcsxcore/new_dynarec/assem_arm64.c | |
138 | else | |
139 | $(error no dynarec support for architecture $(ARCH)) | |
140 | endif | |
448bbcae | 141 | else |
630b122b | 142 | CFLAGS += -DDRC_DISABLE |
7139f3c8 | 143 | endif |
630b122b | 144 | OBJS += libpcsxcore/new_dynarec/emu_if.o |
145 | libpcsxcore/new_dynarec/new_dynarec.o: libpcsxcore/new_dynarec/pcsxmem_inline.c | |
3eb78778 | 146 | ifdef DRC_DBG |
630b122b | 147 | libpcsxcore/new_dynarec/emu_if.o: CFLAGS += -D_FILE_OFFSET_BITS=64 |
3eb78778 | 148 | CFLAGS += -DDRC_DBG |
149 | endif | |
630b122b | 150 | ifeq "$(BASE_ADDR_DYNAMIC)" "1" |
151 | libpcsxcore/new_dynarec/%.o: CFLAGS += -DBASE_ADDR_DYNAMIC=1 | |
a327ad27 | 152 | endif |
f95a77f7 | 153 | |
e906c010 | 154 | # spu |
ee849648 | 155 | OBJS += plugins/dfsound/dma.o plugins/dfsound/freeze.o \ |
07c13dfd | 156 | plugins/dfsound/registers.o plugins/dfsound/spu.o \ |
157 | plugins/dfsound/out.o plugins/dfsound/nullsnd.o | |
6d866bb7 | 158 | plugins/dfsound/spu.o: plugins/dfsound/adsr.c plugins/dfsound/reverb.c \ |
159 | plugins/dfsound/xa.c | |
3a721c1f | 160 | ifeq "$(ARCH)" "arm" |
b17618c0 | 161 | OBJS += plugins/dfsound/arm_utils.o |
162 | endif | |
5514a050 | 163 | ifeq "$(HAVE_C64_TOOLS)" "1" |
164 | plugins/dfsound/spu.o: CFLAGS += -DC64X_DSP | |
165 | plugins/dfsound/spu.o: plugins/dfsound/spu_c64x.c | |
8886a808 | 166 | frontend/menu.o: CFLAGS += -DC64X_DSP |
5514a050 | 167 | endif |
07c13dfd | 168 | ifneq ($(findstring oss,$(SOUND_DRIVERS)),) |
169 | plugins/dfsound/out.o: CFLAGS += -DHAVE_OSS | |
de38f20e | 170 | OBJS += plugins/dfsound/oss.o |
171 | endif | |
07c13dfd | 172 | ifneq ($(findstring alsa,$(SOUND_DRIVERS)),) |
173 | plugins/dfsound/out.o: CFLAGS += -DHAVE_ALSA | |
de38f20e | 174 | OBJS += plugins/dfsound/alsa.o |
4132e8ca | 175 | LDLIBS += -lasound |
176 | endif | |
07c13dfd | 177 | ifneq ($(findstring sdl,$(SOUND_DRIVERS)),) |
178 | plugins/dfsound/out.o: CFLAGS += -DHAVE_SDL | |
d8a2f79b | 179 | OBJS += plugins/dfsound/sdl.o |
180 | endif | |
07c13dfd | 181 | ifneq ($(findstring pulseaudio,$(SOUND_DRIVERS)),) |
182 | plugins/dfsound/out.o: CFLAGS += -DHAVE_PULSE | |
183 | OBJS += plugins/dfsound/pulseaudio.o | |
184 | endif | |
185 | ifneq ($(findstring libretro,$(SOUND_DRIVERS)),) | |
186 | plugins/dfsound/out.o: CFLAGS += -DHAVE_LIBRETRO | |
de38f20e | 187 | endif |
188 | ||
61bc6d40 | 189 | # builtin gpu |
190 | OBJS += plugins/gpulib/gpu.o plugins/gpulib/vout_pl.o | |
61bc6d40 | 191 | ifeq "$(BUILTIN_GPU)" "neon" |
2d17de26 | 192 | CFLAGS += -DGPU_NEON |
1fce6ce8 | 193 | OBJS += plugins/gpu_neon/psx_gpu_if.o |
90ca4913 | 194 | plugins/gpu_neon/psx_gpu_if.o: CFLAGS += -DNEON_BUILD -DTEXTURE_CACHE_4BPP -DTEXTURE_CACHE_8BPP |
195 | plugins/gpu_neon/psx_gpu_if.o: plugins/gpu_neon/psx_gpu/*.c | |
047899a4 | 196 | frontend/menu.o frontend/plugin_lib.o: CFLAGS += -DBUILTIN_GPU_NEON |
197 | ifeq "$(HAVE_NEON_ASM)" "1" | |
198 | OBJS += plugins/gpu_neon/psx_gpu/psx_gpu_arm_neon.o | |
199 | else | |
200 | OBJS += plugins/gpu_neon/psx_gpu/psx_gpu_simd.o | |
201 | plugins/gpu_neon/psx_gpu_if.o: CFLAGS += -DSIMD_BUILD | |
202 | plugins/gpu_neon/psx_gpu/psx_gpu_simd.o: CFLAGS += -DSIMD_BUILD | |
203 | endif | |
61bc6d40 | 204 | endif |
205 | ifeq "$(BUILTIN_GPU)" "peops" | |
2d17de26 | 206 | CFLAGS += -DGPU_PEOPS |
2ef486ee | 207 | # note: code is not safe for strict-aliasing? (Castlevania problems) |
62d7fa95 | 208 | plugins/dfxvideo/gpulib_if.o: CFLAGS += -fno-strict-aliasing |
209 | plugins/dfxvideo/gpulib_if.o: plugins/dfxvideo/prim.c plugins/dfxvideo/soft.c | |
210 | OBJS += plugins/dfxvideo/gpulib_if.o | |
8105c29f JW |
211 | ifeq "$(THREAD_RENDERING)" "1" |
212 | CFLAGS += -DTHREAD_RENDERING | |
213 | OBJS += plugins/gpulib/gpulib_thread_if.o | |
214 | endif | |
90ca4913 | 215 | endif |
61bc6d40 | 216 | ifeq "$(BUILTIN_GPU)" "unai" |
2d17de26 | 217 | CFLAGS += -DGPU_UNAI |
030d1121 | 218 | CFLAGS += -DUSE_GPULIB=1 |
219 | #CFLAGS += -DINLINE="static __inline__" | |
220 | #CFLAGS += -Dasm="__asm__ __volatile__" | |
61bc6d40 | 221 | OBJS += plugins/gpu_unai/gpulib_if.o |
222 | ifeq "$(ARCH)" "arm" | |
223 | OBJS += plugins/gpu_unai/gpu_arm.o | |
224 | endif | |
a903b131 JW |
225 | ifeq "$(THREAD_RENDERING)" "1" |
226 | CFLAGS += -DTHREAD_RENDERING | |
227 | OBJS += plugins/gpulib/gpulib_thread_if.o | |
228 | endif | |
8105c29f JW |
229 | plugins/gpu_unai/gpulib_if.o: CFLAGS += -DREARMED -O3 |
230 | CC_LINK = $(CXX) | |
231 | endif | |
e0c692d9 | 232 | |
47bf65ab | 233 | # cdrcimg |
47bf65ab | 234 | OBJS += plugins/cdrcimg/cdrcimg.o |
e906c010 | 235 | |
ce188d4d | 236 | # libchdr |
b0ec2e6d | 237 | ifeq "$(HAVE_CHD)" "1" |
2ff0b512 | 238 | CFLAGS += -Ideps/libchdr/include |
239 | CFLAGS += -Ideps/libchdr/include/libchdr | |
f07738df | 240 | OBJS += deps/libchdr/deps/lzma-19.00/src/Alloc.o |
241 | OBJS += deps/libchdr/deps/lzma-19.00/src/Bra86.o | |
242 | OBJS += deps/libchdr/deps/lzma-19.00/src/BraIA64.o | |
243 | OBJS += deps/libchdr/deps/lzma-19.00/src/CpuArch.o | |
244 | OBJS += deps/libchdr/deps/lzma-19.00/src/Delta.o | |
245 | OBJS += deps/libchdr/deps/lzma-19.00/src/LzFind.o | |
246 | OBJS += deps/libchdr/deps/lzma-19.00/src/Lzma86Dec.o | |
247 | OBJS += deps/libchdr/deps/lzma-19.00/src/LzmaDec.o | |
248 | OBJS += deps/libchdr/deps/lzma-19.00/src/LzmaEnc.o | |
249 | OBJS += deps/libchdr/deps/lzma-19.00/src/Sort.o | |
2ff0b512 | 250 | OBJS += deps/libchdr/src/libchdr_bitstream.o |
251 | OBJS += deps/libchdr/src/libchdr_cdrom.o | |
252 | OBJS += deps/libchdr/src/libchdr_chd.o | |
253 | OBJS += deps/libchdr/src/libchdr_flac.o | |
254 | OBJS += deps/libchdr/src/libchdr_huffman.o | |
f07738df | 255 | CFLAGS += -Ideps/libchdr/deps/lzma-19.00/include |
2ff0b512 | 256 | CFLAGS += -DHAVE_CHD -D_7ZIP_ST |
ce188d4d | 257 | LDFLAGS += -lm |
b0ec2e6d | 258 | endif |
ce188d4d | 259 | |
384f5f43 | 260 | # dfinput |
8b9b4c9f | 261 | ifneq "$(PLATFORM)" "libretro" |
4c08b9e7 | 262 | OBJS += plugins/dfinput/main.o plugins/dfinput/pad.o plugins/dfinput/guncon.o |
8b9b4c9f | 263 | endif |
384f5f43 | 264 | |
cc56203b | 265 | # frontend/gui |
c82f907a | 266 | OBJS += frontend/cspace.o |
047899a4 | 267 | ifeq "$(HAVE_NEON_ASM)" "1" |
c82f907a | 268 | OBJS += frontend/cspace_neon.o |
047899a4 | 269 | frontend/cspace.o: CFLAGS += -DHAVE_bgr555_to_rgb565 -DHAVE_bgr888_to_x |
d57557c0 | 270 | else |
271 | ifeq "$(ARCH)" "arm" | |
272 | OBJS += frontend/cspace_arm.o | |
047899a4 | 273 | frontend/cspace.o: CFLAGS += -DHAVE_bgr555_to_rgb565 |
d57557c0 | 274 | endif |
c82f907a | 275 | endif |
276 | ||
4132e8ca | 277 | ifeq "$(PLATFORM)" "generic" |
5b9aa749 | 278 | OBJS += frontend/libpicofe/in_sdl.o |
279 | OBJS += frontend/libpicofe/plat_sdl.o | |
cc56203b | 280 | OBJS += frontend/libpicofe/plat_dummy.o |
281 | OBJS += frontend/libpicofe/linux/in_evdev.o | |
5b9aa749 | 282 | OBJS += frontend/plat_sdl.o |
283 | ifeq "$(HAVE_GLES)" "1" | |
2c616080 | 284 | OBJS += frontend/libpicofe/gl.o frontend/libpicofe/gl_platform.o |
5b9aa749 | 285 | LDLIBS += $(LDLIBS_GLES) |
286 | frontend/libpicofe/plat_sdl.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES) | |
2c616080 | 287 | frontend/libpicofe/gl_platform.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES) |
5b9aa749 | 288 | frontend/libpicofe/gl.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES) |
289 | frontend/plat_sdl.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES) | |
290 | endif | |
cc56203b | 291 | USE_PLUGIN_LIB = 1 |
38c2028e | 292 | USE_FRONTEND = 1 |
4132e8ca | 293 | endif |
55b0eeea | 294 | ifeq "$(PLATFORM)" "pandora" |
cc56203b | 295 | OBJS += frontend/libpicofe/pandora/plat.o |
296 | OBJS += frontend/libpicofe/linux/fbdev.o frontend/libpicofe/linux/xenv.o | |
297 | OBJS += frontend/libpicofe/linux/in_evdev.o | |
298 | OBJS += frontend/plat_pandora.o frontend/plat_omap.o | |
da710571 | 299 | frontend/main.o frontend/menu.o: CFLAGS += -include frontend/pandora/ui_feat.h |
3aba4185 | 300 | frontend/libpicofe/linux/plat.o: CFLAGS += -DPANDORA |
cc56203b | 301 | USE_PLUGIN_LIB = 1 |
38c2028e | 302 | USE_FRONTEND = 1 |
4132e8ca | 303 | endif |
55b0eeea | 304 | ifeq "$(PLATFORM)" "caanoo" |
cc56203b | 305 | OBJS += frontend/libpicofe/gp2x/in_gp2x.o frontend/warm/warm.o |
306 | OBJS += frontend/libpicofe/gp2x/soc_pollux.o | |
307 | OBJS += frontend/libpicofe/linux/in_evdev.o | |
faf2b2aa | 308 | OBJS += frontend/plat_pollux.o frontend/in_tsbutton.o frontend/blit320.o |
da710571 | 309 | frontend/main.o frontend/menu.o: CFLAGS += -include frontend/320240/ui_gp2x.h |
cc56203b | 310 | USE_PLUGIN_LIB = 1 |
38c2028e | 311 | USE_FRONTEND = 1 |
312 | endif | |
313 | ifeq "$(PLATFORM)" "maemo" | |
baaef67b | 314 | OBJS += maemo/hildon.o maemo/main.o maemo/maemo_xkb.o frontend/pl_gun_ts.o |
38c2028e | 315 | maemo/%.o: maemo/%.c |
cc56203b | 316 | USE_PLUGIN_LIB = 1 |
a76fd953 | 317 | LDFLAGS += $(shell pkg-config --libs hildon-1 libpulse) |
7010034e | 318 | CFLAGS += $(shell pkg-config --cflags hildon-1) -DHAVE_TSLIB |
a76fd953 PI |
319 | CFLAGS += `pkg-config --cflags glib-2.0 libosso dbus-1 hildon-fm-2` |
320 | LDFLAGS += `pkg-config --libs glib-2.0 libosso dbus-1 hildon-fm-2` | |
38c2028e | 321 | endif |
322 | ifeq "$(PLATFORM)" "libretro" | |
226a5691 | 323 | ifeq "$(USE_LIBRETRO_VFS)" "1" |
324 | OBJS += libretro-common/compat/compat_posix_string.o | |
270c6dd1 | 325 | OBJS += libretro-common/compat/fopen_utf8.o |
07a88422 | 326 | OBJS += libretro-common/encodings/compat_strl.o |
327 | OBJS += libretro-common/encodings/encoding_utf.o | |
226a5691 | 328 | OBJS += libretro-common/file/file_path.o |
329 | OBJS += libretro-common/streams/file_stream.o | |
330 | OBJS += libretro-common/streams/file_stream_transforms.o | |
331 | OBJS += libretro-common/string/stdstring.o | |
332 | OBJS += libretro-common/time/rtime.o | |
333 | OBJS += libretro-common/vfs/vfs_implementation.o | |
334 | CFLAGS += -DUSE_LIBRETRO_VFS | |
335 | endif | |
38c2028e | 336 | OBJS += frontend/libretro.o |
919cac88 | 337 | CFLAGS += -Ilibretro-common/include |
46aa5b98 | 338 | CFLAGS += -DFRONTEND_SUPPORTS_RGB565 |
f40e483e | 339 | CFLAGS += -DHAVE_LIBRETRO |
ce0e7ac9 | 340 | |
6f1edc3c | 341 | ifneq ($(DYNAREC),lightrec) |
ce0e7ac9 | 342 | ifeq ($(MMAP_WIN32),1) |
343 | OBJS += libpcsxcore/memmap_win32.o | |
344 | endif | |
38c2028e | 345 | endif |
6f1edc3c | 346 | endif |
cc56203b | 347 | |
348 | ifeq "$(USE_PLUGIN_LIB)" "1" | |
38c2028e | 349 | OBJS += frontend/plugin_lib.o |
cc56203b | 350 | OBJS += frontend/libpicofe/linux/plat.o |
351 | OBJS += frontend/libpicofe/readpng.o frontend/libpicofe/fonts.o | |
630b122b | 352 | frontend/libpicofe/linux/plat.o: CFLAGS += -DNO_HOME_DIR |
047899a4 | 353 | ifeq "$(HAVE_NEON_ASM)" "1" |
cc56203b | 354 | OBJS += frontend/libpicofe/arm/neon_scale2x.o |
355 | OBJS += frontend/libpicofe/arm/neon_eagle2x.o | |
356 | frontend/libpicofe/arm/neon_scale2x.o: CFLAGS += -DDO_BGR_TO_RGB | |
357 | frontend/libpicofe/arm/neon_eagle2x.o: CFLAGS += -DDO_BGR_TO_RGB | |
358 | endif | |
359 | endif | |
360 | ifeq "$(USE_FRONTEND)" "1" | |
361 | OBJS += frontend/menu.o | |
362 | OBJS += frontend/libpicofe/input.o | |
363 | frontend/menu.o: frontend/libpicofe/menu.c | |
38c2028e | 364 | ifeq "$(HAVE_TSLIB)" "1" |
365 | frontend/%.o: CFLAGS += -DHAVE_TSLIB | |
366 | OBJS += frontend/pl_gun_ts.o | |
367 | endif | |
368 | else | |
369 | CFLAGS += -DNO_FRONTEND | |
55b0eeea | 370 | endif |
a80ae4a0 | 371 | |
cc56203b | 372 | # misc |
373 | OBJS += frontend/main.o frontend/plugin.o | |
374 | ||
e0aec5ee | 375 | |
a1a232ad | 376 | frontend/menu.o frontend/main.o: frontend/revision.h |
377 | frontend/plat_sdl.o frontend/libretro.o: frontend/revision.h | |
3c70c47b | 378 | |
cc56203b | 379 | frontend/libpicofe/%.c: |
fa56d360 | 380 | @echo "libpicofe module is missing, please run:" |
381 | @echo "git submodule init && git submodule update" | |
382 | @exit 1 | |
383 | ||
59774ed0 | 384 | libpcsxcore/gte_nf.o: libpcsxcore/gte.c |
385 | $(CC) -c -o $@ $^ $(CFLAGS) -DFLAGLESS | |
386 | ||
3c70c47b | 387 | frontend/revision.h: FORCE |
08700dbe | 388 | @(git describe --always || echo) | sed -e 's/.*/#define REV "\0"/' > $@_ |
3c70c47b | 389 | @diff -q $@_ $@ > /dev/null 2>&1 || cp $@_ $@ |
390 | @rm $@_ | |
3c70c47b | 391 | |
90ca4913 | 392 | %.o: %.S |
9aff1963 | 393 | $(CC_AS) $(CFLAGS) -c $^ -o $@ |
80c2304e | 394 | |
fc99395c | 395 | %.o: %.cpp |
396 | $(CXX) $(CXXFLAGS) -c -o $@ $< | |
397 | ||
7795edd6 JAS |
398 | %.o: %.c |
399 | $(CC) $(CFLAGS) -c -o $@ $< | |
e0aec5ee | 400 | |
38c2028e | 401 | target_: $(TARGET) |
402 | ||
80c2304e | 403 | $(TARGET): $(OBJS) |
fc99395c | 404 | ifeq ($(STATIC_LINKING), 1) |
405 | $(AR) rcs $@ $(OBJS) | |
406 | else | |
9aff1963 | 407 | $(CC_LINK) -o $@ $^ $(LDFLAGS) $(LDLIBS) $(EXTRA_LDFLAGS) |
fc99395c | 408 | endif |
80c2304e | 409 | |
dd4d5a35 | 410 | clean: $(PLAT_CLEAN) clean_plugins |
a1a232ad | 411 | $(RM) $(TARGET) $(OBJS) $(TARGET).map frontend/revision.h |
0d464c77 | 412 | |
4132e8ca | 413 | ifneq ($(PLUGINS),) |
dd4d5a35 | 414 | plugins_: $(PLUGINS) |
415 | ||
ee78346e | 416 | $(PLUGINS): |
417 | make -C $(dir $@) | |
f932e54b | 418 | |
ee78346e | 419 | clean_plugins: |
ea1f6f2f | 420 | make -C plugins/gpulib/ clean |
ee78346e | 421 | for dir in $(PLUGINS) ; do \ |
422 | $(MAKE) -C $$(dirname $$dir) clean; done | |
dd4d5a35 | 423 | else |
424 | plugins_: | |
425 | clean_plugins: | |
4132e8ca | 426 | endif |
80c2304e | 427 | |
fa56d360 | 428 | .PHONY: all clean target_ plugins_ clean_plugins FORCE |
429 | ||
303ee308 | 430 | # ----------- release ----------- |
431 | ||
08700dbe | 432 | VER ?= $(shell git describe --always HEAD) |
4132e8ca | 433 | |
dd4d5a35 | 434 | ifeq "$(PLATFORM)" "generic" |
435 | OUT = pcsx_rearmed_$(VER) | |
436 | ||
437 | rel: pcsx $(PLUGINS) \ | |
438 | frontend/pandora/skin readme.txt COPYING | |
439 | rm -rf $(OUT) | |
440 | mkdir -p $(OUT)/plugins | |
441 | mkdir -p $(OUT)/bios | |
442 | cp -r $^ $(OUT)/ | |
443 | mv $(OUT)/*.so* $(OUT)/plugins/ | |
444 | zip -9 -r $(OUT).zip $(OUT) | |
445 | endif | |
446 | ||
4132e8ca | 447 | ifeq "$(PLATFORM)" "pandora" |
303ee308 | 448 | PND_MAKE ?= $(HOME)/dev/pnd/src/pandora-libraries/testdata/scripts/pnd_make.sh |
449 | ||
8886a808 | 450 | rel: pcsx plugins/dfsound/pcsxr_spu_area3.out $(PLUGINS) \ |
9e0630ab | 451 | frontend/pandora/pcsx.sh frontend/pandora/pcsx.pxml.templ frontend/pandora/pcsx.png \ |
452 | frontend/pandora/picorestore frontend/pandora/skin readme.txt COPYING | |
303ee308 | 453 | rm -rf out |
bbd837c6 | 454 | mkdir -p out/plugins |
303ee308 | 455 | cp -r $^ out/ |
3938f69a | 456 | sed -e 's/%PR%/$(VER)/g' out/pcsx.pxml.templ > out/pcsx.pxml |
457 | rm out/pcsx.pxml.templ | |
bbd837c6 | 458 | mv out/*.so out/plugins/ |
9e0630ab | 459 | $(PND_MAKE) -p pcsx_rearmed_$(VER).pnd -d out -x out/pcsx.pxml -i frontend/pandora/pcsx.png -c |
4132e8ca | 460 | endif |
461 | ||
462 | ifeq "$(PLATFORM)" "caanoo" | |
463 | PLAT_CLEAN = caanoo_clean | |
464 | ||
465 | caanoo_clean: | |
466 | $(RM) frontend/320240/pollux_set | |
467 | ||
4132e8ca | 468 | rel: pcsx $(PLUGINS) \ |
469 | frontend/320240/caanoo.gpe frontend/320240/pcsx26.png \ | |
470 | frontend/320240/pcsxb.png frontend/320240/skin \ | |
471 | frontend/warm/bin/warm_2.6.24.ko frontend/320240/pollux_set \ | |
472 | frontend/320240/pcsx_rearmed.ini frontend/320240/haptic_w.cfg \ | |
473 | frontend/320240/haptic_s.cfg \ | |
474 | readme.txt COPYING | |
475 | rm -rf out | |
476 | mkdir -p out/pcsx_rearmed/plugins | |
477 | cp -r $^ out/pcsx_rearmed/ | |
4132e8ca | 478 | mv out/pcsx_rearmed/*.so out/pcsx_rearmed/plugins/ |
479 | mv out/pcsx_rearmed/caanoo.gpe out/pcsx_rearmed/pcsx.gpe | |
480 | mv out/pcsx_rearmed/pcsx_rearmed.ini out/ | |
481 | mkdir out/pcsx_rearmed/lib/ | |
482 | cp ./lib/libbz2.so.1 out/pcsx_rearmed/lib/ | |
483 | mkdir out/pcsx_rearmed/bios/ | |
484 | cd out && zip -9 -r ../pcsx_rearmed_$(VER)_caanoo.zip * | |
485 | endif |