cdrom: change pause timing again
[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-22.01
176 LCHDR_ZSTD = $(LCHDR)/deps/zstd-1.5.5/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/Bra86.o
185 OBJS += $(LCHDR_LZMA)/src/BraIA64.o
186 OBJS += $(LCHDR_LZMA)/src/CpuArch.o
187 OBJS += $(LCHDR_LZMA)/src/Delta.o
188 OBJS += $(LCHDR_LZMA)/src/LzFind.o
189 OBJS += $(LCHDR_LZMA)/src/Lzma86Dec.o
190 OBJS += $(LCHDR_LZMA)/src/LzmaDec.o
191 OBJS += $(LCHDR_LZMA)/src/LzmaEnc.o
192 OBJS += $(LCHDR_LZMA)/src/Sort.o
193 $(LCHDR_LZMA)/src/%.o: CFLAGS += -Wno-unused -D_7ZIP_ST -I$(LCHDR_LZMA)/include
194 $(LCHDR)/src/%.o: CFLAGS += -I$(LCHDR_LZMA)/include
195 OBJS += $(LCHDR_ZSTD)/common/debug.o
196 OBJS += $(LCHDR_ZSTD)/common/entropy_common.o
197 OBJS += $(LCHDR_ZSTD)/common/error_private.o
198 OBJS += $(LCHDR_ZSTD)/common/fse_decompress.o
199 OBJS += $(LCHDR_ZSTD)/common/pool.o
200 OBJS += $(LCHDR_ZSTD)/common/threading.o
201 OBJS += $(LCHDR_ZSTD)/common/xxhash.o
202 OBJS += $(LCHDR_ZSTD)/common/zstd_common.o
203 OBJS += $(LCHDR_ZSTD)/decompress/huf_decompress.o
204 OBJS += $(LCHDR_ZSTD)/decompress/zstd_ddict.o
205 OBJS += $(LCHDR_ZSTD)/decompress/zstd_decompress_block.o
206 OBJS += $(LCHDR_ZSTD)/decompress/zstd_decompress.o
207 $(LCHDR_ZSTD)/common/%.o \
208 $(LCHDR_ZSTD)/decompress/%.o: CFLAGS += -DZSTD_DISABLE_ASM -I$(LCHDR_ZSTD)
209 $(LCHDR)/src/%.o: CFLAGS += -I$(LCHDR_ZSTD)
210 libpcsxcore/cdriso.o: CFLAGS += -Wno-unused-function
211 CFLAGS += -DHAVE_CHD -I$(LCHDR)/include
212 #endif
213
214 # frontend/gui
215 OBJS += frontend/cspace.o
216 ifeq "$(HAVE_NEON_ASM)" "1"
217 OBJS += frontend/cspace_neon.o
218 frontend/cspace.o: CFLAGS += -DHAVE_bgr555_to_rgb565 -DHAVE_bgr888_to_x
219 else
220 ifeq "$(ARCH)" "arm"
221 OBJS += frontend/cspace_arm.o
222 frontend/cspace.o: CFLAGS += -DHAVE_bgr555_to_rgb565
223 endif
224 endif
225
226 ifeq "$(PLATFORM)" "generic"
227 OBJS += frontend/libpicofe/in_sdl.o
228 OBJS += frontend/libpicofe/plat_sdl.o
229 OBJS += frontend/libpicofe/plat_dummy.o
230 OBJS += frontend/libpicofe/linux/in_evdev.o
231 OBJS += frontend/plat_sdl.o
232 ifeq "$(HAVE_GLES)" "1"
233 OBJS += frontend/libpicofe/gl.o frontend/libpicofe/gl_platform.o
234 LDLIBS += $(LDLIBS_GLES)
235 frontend/libpicofe/plat_sdl.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES)
236 frontend/libpicofe/gl_platform.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES)
237 frontend/libpicofe/gl.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES)
238 frontend/plat_sdl.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES)
239 endif
240 USE_PLUGIN_LIB = 1
241 USE_FRONTEND = 1
242 endif
243 ifeq "$(PLATFORM)" "pandora"
244 OBJS += frontend/libpicofe/pandora/plat.o
245 OBJS += frontend/libpicofe/linux/fbdev.o frontend/libpicofe/linux/xenv.o
246 OBJS += frontend/libpicofe/linux/in_evdev.o
247 OBJS += frontend/plat_pandora.o frontend/plat_omap.o
248 frontend/main.o frontend/menu.o: CFLAGS += -include frontend/pandora/ui_feat.h
249 frontend/libpicofe/linux/plat.o: CFLAGS += -DPANDORA
250 USE_PLUGIN_LIB = 1
251 USE_FRONTEND = 1
252 CFLAGS += -gdwarf-3 -ffunction-sections -fdata-sections
253 LDFLAGS += -Wl,--gc-sections
254 endif
255 ifeq "$(PLATFORM)" "caanoo"
256 OBJS += frontend/libpicofe/gp2x/in_gp2x.o frontend/warm/warm.o
257 OBJS += frontend/libpicofe/gp2x/soc_pollux.o
258 OBJS += frontend/libpicofe/linux/in_evdev.o
259 OBJS += frontend/plat_pollux.o frontend/in_tsbutton.o frontend/blit320.o
260 frontend/main.o frontend/menu.o: CFLAGS += -include frontend/320240/ui_gp2x.h
261 USE_PLUGIN_LIB = 1
262 USE_FRONTEND = 1
263 endif
264 ifeq "$(PLATFORM)" "maemo"
265 OBJS += maemo/hildon.o maemo/main.o maemo/maemo_xkb.o frontend/pl_gun_ts.o
266 maemo/%.o: maemo/%.c
267 USE_PLUGIN_LIB = 1
268 LDFLAGS += $(shell pkg-config --libs hildon-1 libpulse)
269 CFLAGS += $(shell pkg-config --cflags hildon-1) -DHAVE_TSLIB
270 CFLAGS += `pkg-config --cflags glib-2.0 libosso dbus-1 hildon-fm-2`
271 LDFLAGS += `pkg-config --libs glib-2.0 libosso dbus-1 hildon-fm-2`
272 endif
273 ifeq "$(PLATFORM)" "libretro"
274 ifneq "$(HAVE_PHYSICAL_CDROM)$(USE_LIBRETRO_VFS)" "00"
275 OBJS += deps/libretro-common/compat/compat_strl.o
276 OBJS += deps/libretro-common/file/file_path.o
277 OBJS += deps/libretro-common/string/stdstring.o
278 OBJS += deps/libretro-common/vfs/vfs_implementation.o
279 endif
280 ifeq "$(HAVE_PHYSICAL_CDROM)" "1"
281 OBJS += frontend/libretro-cdrom.o
282 OBJS += deps/libretro-common/lists/string_list.o
283 OBJS += deps/libretro-common/memmap/memalign.o
284 OBJS += deps/libretro-common/rthreads/rthreads.o
285 OBJS += deps/libretro-common/vfs/vfs_implementation_cdrom.o
286 CFLAGS += -DHAVE_CDROM
287 endif
288 ifeq "$(USE_LIBRETRO_VFS)" "1"
289 OBJS += deps/libretro-common/compat/compat_posix_string.o
290 OBJS += deps/libretro-common/compat/fopen_utf8.o
291 OBJS += deps/libretro-common/encodings/encoding_utf.o
292 OBJS += deps/libretro-common/streams/file_stream.o
293 OBJS += deps/libretro-common/streams/file_stream_transforms.o
294 OBJS += deps/libretro-common/time/rtime.o
295 CFLAGS += -DUSE_LIBRETRO_VFS
296 endif
297 OBJS += frontend/libretro.o
298 CFLAGS += -DFRONTEND_SUPPORTS_RGB565
299
300 ifeq ($(MMAP_WIN32),1)
301 OBJS += libpcsxcore/memmap_win32.o
302 endif
303 endif
304
305 ifeq "$(USE_PLUGIN_LIB)" "1"
306 OBJS += frontend/plugin_lib.o
307 OBJS += frontend/libpicofe/linux/plat.o
308 OBJS += frontend/libpicofe/readpng.o frontend/libpicofe/fonts.o
309 frontend/libpicofe/linux/plat.o: CFLAGS += -DNO_HOME_DIR
310 ifeq "$(HAVE_NEON_ASM)" "1"
311 OBJS += frontend/libpicofe/arm/neon_scale2x.o
312 OBJS += frontend/libpicofe/arm/neon_eagle2x.o
313 frontend/libpicofe/arm/neon_scale2x.o: CFLAGS += -DDO_BGR_TO_RGB
314 frontend/libpicofe/arm/neon_eagle2x.o: CFLAGS += -DDO_BGR_TO_RGB
315 endif
316 endif
317 ifeq "$(USE_FRONTEND)" "1"
318 OBJS += frontend/menu.o
319 OBJS += frontend/libpicofe/input.o
320 frontend/menu.o: frontend/libpicofe/menu.c
321 ifeq "$(HAVE_TSLIB)" "1"
322 frontend/%.o: CFLAGS += -DHAVE_TSLIB
323 OBJS += frontend/pl_gun_ts.o
324 endif
325 else
326 CFLAGS += -DNO_FRONTEND
327 endif
328
329 # misc
330 OBJS += frontend/main.o frontend/plugin.o
331 frontend/main.o: CFLAGS += -DBUILTIN_GPU=$(BUILTIN_GPU)
332
333 frontend/menu.o frontend/main.o: frontend/revision.h
334 frontend/plat_sdl.o frontend/libretro.o: frontend/revision.h
335
336 frontend/libpicofe/%.c:
337         @echo "libpicofe module is missing, please run:"
338         @echo "git submodule init && git submodule update"
339         @exit 1
340
341 libpcsxcore/gte_nf.o: libpcsxcore/gte.c
342         $(CC) -c -o $@ $^ $(CFLAGS) -DFLAGLESS
343
344 frontend/revision.h: FORCE
345         @(git describe --always || echo) | sed -e 's/.*/#define REV "\0"/' > $@_
346         @diff -q $@_ $@ > /dev/null 2>&1 || cp $@_ $@
347         @rm $@_
348
349 %.o: %.S
350         $(CC_AS) $(CFLAGS) -c $^ -o $@
351
352
353 target_: $(TARGET)
354
355 $(TARGET): $(OBJS)
356         $(CC_LINK) $(CFLAGS) -o $@ $^ $(LDFLAGS) $(LDLIBS) $(EXTRA_LDFLAGS)
357
358 clean: $(PLAT_CLEAN) clean_plugins
359         $(RM) $(TARGET) $(OBJS) $(TARGET).map frontend/revision.h
360
361 ifneq ($(PLUGINS),)
362 plugins_: $(PLUGINS)
363
364 $(PLUGINS):
365         $(MAKE) -C $(dir $@)
366
367 clean_plugins:
368         $(MAKE) -C plugins/gpulib/ clean
369         for dir in $(PLUGINS) ; do \
370                 $(MAKE) -C $$(dirname $$dir) clean; done
371 else
372 plugins_:
373 clean_plugins:
374 endif
375
376 .PHONY: all clean target_ plugins_ clean_plugins FORCE
377
378 ifneq "$(PLATFORM)" "pandora"
379 ifdef CPATH
380 $(warning warning: CPATH is defined)
381 endif
382 endif
383
384 # ----------- release -----------
385
386 VER ?= $(shell git describe --always HEAD)
387
388 ifeq "$(PLATFORM)" "generic"
389 OUT = pcsx_rearmed_$(VER)
390
391 rel: pcsx $(PLUGINS) \
392                 frontend/pandora/skin readme.txt COPYING
393         rm -rf $(OUT)
394         mkdir -p $(OUT)/plugins
395         mkdir -p $(OUT)/bios
396         cp -r $^ $(OUT)/
397         mv $(OUT)/*.so* $(OUT)/plugins/
398         zip -9 -r $(OUT).zip $(OUT)
399 endif
400
401 ifeq "$(PLATFORM)" "pandora"
402 PND_MAKE ?= $(HOME)/dev/pnd/src/pandora-libraries/testdata/scripts/pnd_make.sh
403
404 rel: pcsx plugins/dfsound/pcsxr_spu_area3.out $(PLUGINS) \
405                 frontend/pandora/pcsx.sh frontend/pandora/pcsx.pxml.templ frontend/pandora/pcsx.png \
406                 frontend/pandora/picorestore frontend/pandora/skin readme.txt COPYING
407         rm -rf out
408         mkdir -p out/plugins
409         cp -r $^ out/
410         sed -e 's/%PR%/$(VER)/g' out/pcsx.pxml.templ > out/pcsx.pxml
411         rm out/pcsx.pxml.templ
412         mv out/*.so out/plugins/
413         $(PND_MAKE) -p pcsx_rearmed_$(VER).pnd -d out -x out/pcsx.pxml -i frontend/pandora/pcsx.png -c
414 endif
415
416 ifeq "$(PLATFORM)" "caanoo"
417 PLAT_CLEAN = caanoo_clean
418
419 caanoo_clean:
420         $(RM) frontend/320240/pollux_set
421
422 rel: pcsx $(PLUGINS) \
423                 frontend/320240/caanoo.gpe frontend/320240/pcsx26.png \
424                 frontend/320240/pcsxb.png frontend/320240/skin \
425                 frontend/warm/bin/warm_2.6.24.ko frontend/320240/pollux_set \
426                 frontend/320240/pcsx_rearmed.ini frontend/320240/haptic_w.cfg \
427                 frontend/320240/haptic_s.cfg \
428                 readme.txt COPYING
429         rm -rf out
430         mkdir -p out/pcsx_rearmed/plugins
431         cp -r $^ out/pcsx_rearmed/
432         mv out/pcsx_rearmed/*.so out/pcsx_rearmed/plugins/
433         mv out/pcsx_rearmed/caanoo.gpe out/pcsx_rearmed/pcsx.gpe
434         mv out/pcsx_rearmed/pcsx_rearmed.ini out/
435         mkdir out/pcsx_rearmed/lib/
436         cp ./lib/libbz2.so.1 out/pcsx_rearmed/lib/
437         mkdir out/pcsx_rearmed/bios/
438         cd out && zip -9 -r ../pcsx_rearmed_$(VER)_caanoo.zip *
439 endif