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