5b890600d63469a440cdd9971b429123b5242787
[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 -ggdb -Iinclude -ffast-math
6 ifndef DEBUG
7 CFLAGS += -O2 -DNDEBUG
8 endif
9 ifeq ($(DEBUG_ASAN), 1)
10 CFLAGS += -fsanitize=address
11 endif
12 CFLAGS += -DP_HAVE_MMAP=$(if $(NO_MMAP),0,1) \
13           -DP_HAVE_PTHREAD=$(if $(NO_PTHREAD),0,1) \
14           -DP_HAVE_POSIX_MEMALIGN=$(if $(NO_POSIX_MEMALIGN),0,1) \
15           -DDISABLE_MEM_LUTS=0
16 CXXFLAGS += $(CFLAGS)
17 #DRC_DBG = 1
18 #PCNT = 1
19
20 all: config.mak target_ plugins_
21
22 ifndef NO_CONFIG_MAK
23 ifneq ($(wildcard config.mak),)
24 config.mak: ./configure
25         @echo $@ is out-of-date, running configure
26         @sed -n "/.*Configured with/s/[^:]*: //p" $@ | sh
27 include config.mak
28 else
29 config.mak:
30         @echo "Please run ./configure before running make!"
31         @exit 1
32 endif
33 else # NO_CONFIG_MAK
34 config.mak:
35 endif
36
37 -include Makefile.local
38
39 CC_LINK ?= $(CC)
40 CC_AS ?= $(CC)
41 LDFLAGS += $(MAIN_LDFLAGS)
42 ifeq ($(DEBUG_ASAN), 1)
43 LDFLAGS += -static-libasan
44 endif
45 EXTRA_LDFLAGS ?= -Wl,-Map=$@.map
46 LDLIBS += $(MAIN_LDLIBS)
47 ifdef PCNT
48 CFLAGS += -DPCNT
49 endif
50
51 # core
52 OBJS += libpcsxcore/cdriso.o libpcsxcore/cdrom.o libpcsxcore/cheat.o libpcsxcore/database.o \
53         libpcsxcore/decode_xa.o libpcsxcore/mdec.o \
54         libpcsxcore/misc.o libpcsxcore/plugins.o libpcsxcore/ppf.o libpcsxcore/psxbios.o \
55         libpcsxcore/psxcommon.o libpcsxcore/psxcounters.o libpcsxcore/psxdma.o \
56         libpcsxcore/psxhw.o libpcsxcore/psxinterpreter.o libpcsxcore/psxmem.o \
57         libpcsxcore/psxevents.o libpcsxcore/r3000a.o \
58         libpcsxcore/sio.o libpcsxcore/spu.o libpcsxcore/gpu.o
59 OBJS += libpcsxcore/gte.o libpcsxcore/gte_nf.o libpcsxcore/gte_divider.o
60 #OBJS += libpcsxcore/debug.o libpcsxcore/socket.o libpcsxcore/disr3000a.o
61 ifeq "$(ARCH)" "arm"
62 OBJS += libpcsxcore/gte_arm.o
63 endif
64 ifeq "$(HAVE_NEON_ASM)" "1"
65 OBJS += libpcsxcore/gte_neon.o
66 endif
67 libpcsxcore/psxbios.o: CFLAGS += -Wno-nonnull
68
69 # dynarec
70 ifeq "$(USE_DYNAREC)" "1"
71 OBJS += libpcsxcore/new_dynarec/new_dynarec.o
72 OBJS += libpcsxcore/new_dynarec/pcsxmem.o
73  ifeq "$(ARCH)" "arm"
74  OBJS += libpcsxcore/new_dynarec/linkage_arm.o
75  libpcsxcore/new_dynarec/new_dynarec.o: libpcsxcore/new_dynarec/assem_arm.c
76  else ifneq (,$(findstring $(ARCH),aarch64 arm64))
77  OBJS += libpcsxcore/new_dynarec/linkage_arm64.o
78  libpcsxcore/new_dynarec/new_dynarec.o: libpcsxcore/new_dynarec/assem_arm64.c
79  else
80  $(error no dynarec support for architecture $(ARCH))
81  endif
82 else
83 CFLAGS += -DDRC_DISABLE
84 endif
85 OBJS += libpcsxcore/new_dynarec/emu_if.o
86 libpcsxcore/new_dynarec/new_dynarec.o: libpcsxcore/new_dynarec/pcsxmem_inline.c
87 ifdef DRC_DBG
88 libpcsxcore/new_dynarec/emu_if.o: CFLAGS += -D_FILE_OFFSET_BITS=64
89 CFLAGS += -DDRC_DBG
90 endif
91 ifeq "$(BASE_ADDR_DYNAMIC)" "1"
92 libpcsxcore/new_dynarec/%.o: CFLAGS += -DBASE_ADDR_DYNAMIC=1
93 endif
94
95 # spu
96 OBJS += plugins/dfsound/dma.o plugins/dfsound/freeze.o \
97         plugins/dfsound/registers.o plugins/dfsound/spu.o \
98         plugins/dfsound/out.o plugins/dfsound/nullsnd.o
99 plugins/dfsound/spu.o: plugins/dfsound/adsr.c plugins/dfsound/reverb.c \
100         plugins/dfsound/xa.c
101 ifeq "$(ARCH)" "arm"
102 OBJS += plugins/dfsound/arm_utils.o
103 endif
104 ifeq "$(HAVE_C64_TOOLS)" "1"
105 plugins/dfsound/%.o: CFLAGS += -DC64X_DSP -DWANT_THREAD_CODE
106 plugins/dfsound/spu.o: plugins/dfsound/spu_c64x.c
107 frontend/menu.o: CFLAGS += -DC64X_DSP
108 endif
109 ifneq ($(findstring oss,$(SOUND_DRIVERS)),)
110 plugins/dfsound/out.o: CFLAGS += -DHAVE_OSS
111 OBJS += plugins/dfsound/oss.o
112 endif
113 ifneq ($(findstring alsa,$(SOUND_DRIVERS)),)
114 plugins/dfsound/out.o: CFLAGS += -DHAVE_ALSA
115 OBJS += plugins/dfsound/alsa.o
116 LDLIBS += -lasound
117 endif
118 ifneq ($(findstring sdl,$(SOUND_DRIVERS)),)
119 plugins/dfsound/out.o: CFLAGS += -DHAVE_SDL
120 OBJS += plugins/dfsound/sdl.o
121 endif
122 ifneq ($(findstring pulseaudio,$(SOUND_DRIVERS)),)
123 plugins/dfsound/out.o: CFLAGS += -DHAVE_PULSE
124 OBJS += plugins/dfsound/pulseaudio.o
125 endif
126 ifneq ($(findstring libretro,$(SOUND_DRIVERS)),)
127 plugins/dfsound/out.o: CFLAGS += -DHAVE_LIBRETRO
128 endif
129
130 # builtin gpu
131 OBJS += plugins/gpulib/gpu.o plugins/gpulib/vout_pl.o
132 ifeq "$(BUILTIN_GPU)" "neon"
133 OBJS += plugins/gpu_neon/psx_gpu_if.o
134 plugins/gpu_neon/psx_gpu_if.o: CFLAGS += -DNEON_BUILD -DTEXTURE_CACHE_4BPP -DTEXTURE_CACHE_8BPP
135 plugins/gpu_neon/psx_gpu_if.o: plugins/gpu_neon/psx_gpu/*.c
136 frontend/menu.o frontend/plugin_lib.o: CFLAGS += -DBUILTIN_GPU_NEON
137  ifeq "$(HAVE_NEON_ASM)" "1"
138  OBJS += plugins/gpu_neon/psx_gpu/psx_gpu_arm_neon.o
139  else
140  OBJS += plugins/gpu_neon/psx_gpu/psx_gpu_simd.o
141  plugins/gpu_neon/psx_gpu_if.o: CFLAGS += -DSIMD_BUILD
142  plugins/gpu_neon/psx_gpu/psx_gpu_simd.o: CFLAGS += -DSIMD_BUILD
143  endif
144 endif
145 ifeq "$(BUILTIN_GPU)" "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_old"
152 OBJS += plugins/gpu_unai_old/gpulib_if.o
153 ifeq "$(ARCH)" "arm"
154 OBJS += plugins/gpu_unai_old/gpu_arm.o
155 endif
156 plugins/gpu_unai_old/gpulib_if.o: CFLAGS += -DREARMED -O3
157 CC_LINK = $(CXX)
158 endif
159
160 ifeq "$(BUILTIN_GPU)" "unai"
161 OBJS += plugins/gpu_unai/gpulib_if.o
162 ifeq "$(ARCH)" "arm"
163 OBJS += plugins/gpu_unai/gpu_arm.o
164 endif
165 plugins/gpu_unai/gpulib_if.o: CFLAGS += -DREARMED -DUSE_GPULIB=1 -O3
166 CC_LINK = $(CXX)
167 endif
168
169 # cdrcimg
170 OBJS += plugins/cdrcimg/cdrcimg.o
171
172 # libchdr
173 #ifeq "$(HAVE_CHD)" "1"
174 LCHDR = deps/libchdr
175 LCHDR_LZMA = $(LCHDR)/deps/lzma-24.05
176 LCHDR_ZSTD = $(LCHDR)/deps/zstd-1.5.6/lib
177 OBJS += $(LCHDR)/src/libchdr_bitstream.o
178 OBJS += $(LCHDR)/src/libchdr_cdrom.o
179 OBJS += $(LCHDR)/src/libchdr_chd.o
180 OBJS += $(LCHDR)/src/libchdr_flac.o
181 OBJS += $(LCHDR)/src/libchdr_huffman.o
182 $(LCHDR)/src/%.o: CFLAGS += -Wno-unused -std=gnu11
183 OBJS += $(LCHDR_LZMA)/src/Alloc.o
184 OBJS += $(LCHDR_LZMA)/src/CpuArch.o
185 OBJS += $(LCHDR_LZMA)/src/Delta.o
186 OBJS += $(LCHDR_LZMA)/src/LzFind.o
187 OBJS += $(LCHDR_LZMA)/src/LzmaDec.o
188 OBJS += $(LCHDR_LZMA)/src/LzmaEnc.o
189 OBJS += $(LCHDR_LZMA)/src/Sort.o
190 $(LCHDR_LZMA)/src/%.o: CFLAGS += -Wno-unused -DZ7_ST -I$(LCHDR_LZMA)/include
191 $(LCHDR)/src/%.o: CFLAGS += -I$(LCHDR_LZMA)/include
192 OBJS += $(LCHDR_ZSTD)/common/entropy_common.o
193 OBJS += $(LCHDR_ZSTD)/common/error_private.o
194 OBJS += $(LCHDR_ZSTD)/common/fse_decompress.o
195 OBJS += $(LCHDR_ZSTD)/common/xxhash.o
196 OBJS += $(LCHDR_ZSTD)/common/zstd_common.o
197 OBJS += $(LCHDR_ZSTD)/decompress/huf_decompress.o
198 OBJS += $(LCHDR_ZSTD)/decompress/huf_decompress_amd64.o
199 OBJS += $(LCHDR_ZSTD)/decompress/zstd_ddict.o
200 OBJS += $(LCHDR_ZSTD)/decompress/zstd_decompress_block.o
201 OBJS += $(LCHDR_ZSTD)/decompress/zstd_decompress.o
202 $(LCHDR_ZSTD)/common/%.o \
203 $(LCHDR_ZSTD)/decompress/%.o: CFLAGS += -I$(LCHDR_ZSTD)
204 $(LCHDR)/src/%.o: CFLAGS += -I$(LCHDR_ZSTD)
205 libpcsxcore/cdriso.o: CFLAGS += -Wno-unused-function
206 CFLAGS += -DHAVE_CHD -I$(LCHDR)/include
207 #endif
208
209 # frontend/gui
210 OBJS += frontend/cspace.o
211 ifeq "$(HAVE_NEON_ASM)" "1"
212 OBJS += frontend/cspace_neon.o
213 frontend/cspace.o: CFLAGS += -DHAVE_bgr555_to_rgb565 -DHAVE_bgr888_to_x
214 else
215 ifeq "$(ARCH)" "arm"
216 OBJS += frontend/cspace_arm.o
217 frontend/cspace.o: CFLAGS += -DHAVE_bgr555_to_rgb565
218 endif
219 endif
220
221 ifeq "$(PLATFORM)" "generic"
222 OBJS += frontend/libpicofe/in_sdl.o
223 OBJS += frontend/libpicofe/plat_sdl.o
224 OBJS += frontend/libpicofe/plat_dummy.o
225 OBJS += frontend/libpicofe/linux/in_evdev.o
226 OBJS += frontend/plat_sdl.o
227 ifeq "$(HAVE_GLES)" "1"
228 OBJS += frontend/libpicofe/gl.o frontend/libpicofe/gl_platform.o
229 LDLIBS += $(LDLIBS_GLES)
230 frontend/libpicofe/plat_sdl.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES)
231 frontend/libpicofe/gl_platform.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES)
232 frontend/libpicofe/gl.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES)
233 frontend/plat_sdl.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES)
234 endif
235 USE_PLUGIN_LIB = 1
236 USE_FRONTEND = 1
237 endif
238 ifeq "$(PLATFORM)" "pandora"
239 OBJS += frontend/libpicofe/pandora/plat.o
240 OBJS += frontend/libpicofe/linux/fbdev.o frontend/libpicofe/linux/xenv.o
241 OBJS += frontend/libpicofe/linux/in_evdev.o
242 OBJS += frontend/plat_pandora.o frontend/plat_omap.o
243 frontend/main.o frontend/menu.o: CFLAGS += -include frontend/pandora/ui_feat.h
244 frontend/libpicofe/linux/plat.o: CFLAGS += -DPANDORA
245 USE_PLUGIN_LIB = 1
246 USE_FRONTEND = 1
247 CFLAGS += -gdwarf-3 -ffunction-sections -fdata-sections
248 LDFLAGS += -Wl,--gc-sections
249 endif
250 ifeq "$(PLATFORM)" "caanoo"
251 OBJS += frontend/libpicofe/gp2x/in_gp2x.o frontend/warm/warm.o
252 OBJS += frontend/libpicofe/gp2x/soc_pollux.o
253 OBJS += frontend/libpicofe/linux/in_evdev.o
254 OBJS += frontend/plat_pollux.o frontend/in_tsbutton.o frontend/blit320.o
255 frontend/main.o frontend/menu.o: CFLAGS += -include frontend/320240/ui_gp2x.h
256 USE_PLUGIN_LIB = 1
257 USE_FRONTEND = 1
258 endif
259 ifeq "$(PLATFORM)" "maemo"
260 OBJS += maemo/hildon.o maemo/main.o maemo/maemo_xkb.o frontend/pl_gun_ts.o
261 maemo/%.o: maemo/%.c
262 USE_PLUGIN_LIB = 1
263 LDFLAGS += $(shell pkg-config --libs hildon-1 libpulse)
264 CFLAGS += $(shell pkg-config --cflags hildon-1) -DHAVE_TSLIB
265 CFLAGS += `pkg-config --cflags glib-2.0 libosso dbus-1 hildon-fm-2`
266 LDFLAGS += `pkg-config --libs glib-2.0 libosso dbus-1 hildon-fm-2`
267 endif
268 ifeq "$(PLATFORM)" "libretro"
269 ifneq "$(HAVE_PHYSICAL_CDROM)$(USE_LIBRETRO_VFS)" "00"
270 OBJS += deps/libretro-common/compat/compat_strl.o
271 OBJS += deps/libretro-common/file/file_path.o
272 OBJS += deps/libretro-common/string/stdstring.o
273 OBJS += deps/libretro-common/vfs/vfs_implementation.o
274 endif
275 ifeq "$(HAVE_PHYSICAL_CDROM)" "1"
276 OBJS += frontend/libretro-cdrom.o
277 OBJS += deps/libretro-common/lists/string_list.o
278 OBJS += deps/libretro-common/memmap/memalign.o
279 OBJS += deps/libretro-common/rthreads/rthreads.o
280 OBJS += deps/libretro-common/vfs/vfs_implementation_cdrom.o
281 CFLAGS += -DHAVE_CDROM
282 endif
283 ifeq "$(USE_LIBRETRO_VFS)" "1"
284 OBJS += deps/libretro-common/compat/compat_posix_string.o
285 OBJS += deps/libretro-common/compat/fopen_utf8.o
286 OBJS += deps/libretro-common/encodings/encoding_utf.o
287 OBJS += deps/libretro-common/streams/file_stream.o
288 OBJS += deps/libretro-common/streams/file_stream_transforms.o
289 OBJS += deps/libretro-common/time/rtime.o
290 CFLAGS += -DUSE_LIBRETRO_VFS
291 endif
292 OBJS += frontend/libretro.o
293 CFLAGS += -DFRONTEND_SUPPORTS_RGB565
294
295 ifeq ($(MMAP_WIN32),1)
296 OBJS += libpcsxcore/memmap_win32.o
297 endif
298 endif
299
300 ifeq "$(USE_PLUGIN_LIB)" "1"
301 OBJS += frontend/plugin_lib.o
302 OBJS += frontend/libpicofe/linux/plat.o
303 OBJS += frontend/libpicofe/readpng.o frontend/libpicofe/fonts.o
304 frontend/libpicofe/linux/plat.o: CFLAGS += -DNO_HOME_DIR
305 ifeq "$(HAVE_NEON_ASM)" "1"
306 OBJS += frontend/libpicofe/arm/neon_scale2x.o
307 OBJS += frontend/libpicofe/arm/neon_eagle2x.o
308 frontend/libpicofe/arm/neon_scale2x.o: CFLAGS += -DDO_BGR_TO_RGB
309 frontend/libpicofe/arm/neon_eagle2x.o: CFLAGS += -DDO_BGR_TO_RGB
310 endif
311 endif
312 ifeq "$(USE_FRONTEND)" "1"
313 OBJS += frontend/menu.o
314 OBJS += frontend/libpicofe/input.o
315 frontend/menu.o: frontend/libpicofe/menu.c
316 ifeq "$(HAVE_TSLIB)" "1"
317 frontend/%.o: CFLAGS += -DHAVE_TSLIB
318 OBJS += frontend/pl_gun_ts.o
319 endif
320 else
321 CFLAGS += -DNO_FRONTEND
322 endif
323
324 # misc
325 OBJS += frontend/main.o frontend/plugin.o
326 frontend/main.o: CFLAGS += -DBUILTIN_GPU=$(BUILTIN_GPU)
327
328 frontend/menu.o frontend/main.o: frontend/revision.h
329 frontend/plat_sdl.o frontend/libretro.o: frontend/revision.h
330
331 frontend/libpicofe/%.c:
332         @echo "libpicofe module is missing, please run:"
333         @echo "git submodule init && git submodule update"
334         @exit 1
335
336 libpcsxcore/gte_nf.o: libpcsxcore/gte.c
337         $(CC) -c -o $@ $^ $(CFLAGS) -DFLAGLESS
338
339 frontend/revision.h: FORCE
340         @(git describe --always || echo) | sed -e 's/.*/#define REV "\0"/' > $@_
341         @diff -q $@_ $@ > /dev/null 2>&1 || cp $@_ $@
342         @rm $@_
343
344 %.o: %.S
345         $(CC_AS) $(CFLAGS) -c $^ -o $@
346
347
348 target_: $(TARGET)
349
350 $(TARGET): $(OBJS)
351         $(CC_LINK) $(CFLAGS) -o $@ $^ $(LDFLAGS) $(LDLIBS) $(EXTRA_LDFLAGS)
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 ifneq "$(PLATFORM)" "pandora"
374 ifdef CPATH
375 $(warning warning: CPATH is defined)
376 endif
377 endif
378
379 # ----------- release -----------
380
381 VER ?= $(shell git describe --always HEAD)
382
383 ifeq "$(PLATFORM)" "generic"
384 OUT = pcsx_rearmed_$(VER)
385
386 rel: pcsx $(PLUGINS) \
387                 frontend/pandora/skin readme.txt COPYING
388         rm -rf $(OUT)
389         mkdir -p $(OUT)/plugins
390         mkdir -p $(OUT)/bios
391         cp -r $^ $(OUT)/
392         mv $(OUT)/*.so* $(OUT)/plugins/
393         zip -9 -r $(OUT).zip $(OUT)
394 endif
395
396 ifeq "$(PLATFORM)" "pandora"
397 PND_MAKE ?= $(HOME)/dev/pnd/src/pandora-libraries/testdata/scripts/pnd_make.sh
398
399 rel: pcsx plugins/dfsound/pcsxr_spu_area3.out $(PLUGINS) \
400                 frontend/pandora/pcsx.sh frontend/pandora/pcsx.pxml.templ frontend/pandora/pcsx.png \
401                 frontend/pandora/picorestore frontend/pandora/skin readme.txt COPYING
402         rm -rf out
403         mkdir -p out/plugins
404         cp -r $^ out/
405         sed -e 's/%PR%/$(VER)/g' out/pcsx.pxml.templ > out/pcsx.pxml
406         rm out/pcsx.pxml.templ
407         mv out/*.so out/plugins/
408         $(PND_MAKE) -p pcsx_rearmed_$(VER).pnd -d out -x out/pcsx.pxml -i frontend/pandora/pcsx.png -c
409 endif
410
411 ifeq "$(PLATFORM)" "caanoo"
412 PLAT_CLEAN = caanoo_clean
413
414 caanoo_clean:
415         $(RM) frontend/320240/pollux_set
416
417 rel: pcsx $(PLUGINS) \
418                 frontend/320240/caanoo.gpe frontend/320240/pcsx26.png \
419                 frontend/320240/pcsxb.png frontend/320240/skin \
420                 frontend/warm/bin/warm_2.6.24.ko frontend/320240/pollux_set \
421                 frontend/320240/pcsx_rearmed.ini frontend/320240/haptic_w.cfg \
422                 frontend/320240/haptic_s.cfg \
423                 readme.txt COPYING
424         rm -rf out
425         mkdir -p out/pcsx_rearmed/plugins
426         cp -r $^ out/pcsx_rearmed/
427         mv out/pcsx_rearmed/*.so out/pcsx_rearmed/plugins/
428         mv out/pcsx_rearmed/caanoo.gpe out/pcsx_rearmed/pcsx.gpe
429         mv out/pcsx_rearmed/pcsx_rearmed.ini out/
430         mkdir out/pcsx_rearmed/lib/
431         cp ./lib/libbz2.so.1 out/pcsx_rearmed/lib/
432         mkdir out/pcsx_rearmed/bios/
433         cd out && zip -9 -r ../pcsx_rearmed_$(VER)_caanoo.zip *
434 endif