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 CXXFLAGS += $(CFLAGS)
10 #DRC_DBG = 1
11 #PCNT = 1
12
13 all: config.mak target_ plugins_
14
15 ifndef NO_CONFIG_MAK
16 ifneq ($(wildcard config.mak),)
17 config.mak: ./configure
18         @echo $@ is out-of-date, running configure
19         @sed -n "/.*Configured with/s/[^:]*: //p" $@ | sh
20 include config.mak
21 else
22 config.mak:
23         @echo "Please run ./configure before running make!"
24         @exit 1
25 endif
26 else # NO_CONFIG_MAK
27 config.mak:
28 endif
29
30 -include Makefile.local
31
32 CC_LINK ?= $(CC)
33 CC_AS ?= $(CC)
34 LDFLAGS += $(MAIN_LDFLAGS)
35 EXTRA_LDFLAGS ?= -Wl,-Map=$@.map
36 LDLIBS += $(MAIN_LDLIBS)
37 ifdef PCNT
38 CFLAGS += -DPCNT
39 endif
40
41 # core
42 OBJS += libpcsxcore/cdriso.o libpcsxcore/cdrom.o libpcsxcore/cheat.o libpcsxcore/database.o \
43         libpcsxcore/decode_xa.o libpcsxcore/mdec.o \
44         libpcsxcore/misc.o libpcsxcore/plugins.o libpcsxcore/ppf.o libpcsxcore/psxbios.o \
45         libpcsxcore/psxcommon.o libpcsxcore/psxcounters.o libpcsxcore/psxdma.o libpcsxcore/psxhle.o \
46         libpcsxcore/psxhw.o libpcsxcore/psxinterpreter.o libpcsxcore/psxmem.o libpcsxcore/r3000a.o \
47         libpcsxcore/sio.o libpcsxcore/spu.o
48 OBJS += libpcsxcore/gte.o libpcsxcore/gte_nf.o libpcsxcore/gte_divider.o
49 #OBJS += libpcsxcore/debug.o libpcsxcore/socket.o libpcsxcore/disr3000a.o
50 ifeq "$(ARCH)" "arm"
51 OBJS += libpcsxcore/gte_arm.o
52 endif
53 ifeq "$(HAVE_NEON_ASM)" "1"
54 OBJS += libpcsxcore/gte_neon.o
55 endif
56 libpcsxcore/psxbios.o: CFLAGS += -Wno-nonnull
57
58 # dynarec
59 ifeq "$(USE_DYNAREC)" "1"
60 OBJS += libpcsxcore/new_dynarec/new_dynarec.o
61 OBJS += libpcsxcore/new_dynarec/pcsxmem.o
62  ifeq "$(ARCH)" "arm"
63  OBJS += libpcsxcore/new_dynarec/linkage_arm.o
64  libpcsxcore/new_dynarec/new_dynarec.o: libpcsxcore/new_dynarec/assem_arm.c
65  else ifneq (,$(findstring $(ARCH),aarch64 arm64))
66  OBJS += libpcsxcore/new_dynarec/linkage_arm64.o
67  libpcsxcore/new_dynarec/new_dynarec.o: libpcsxcore/new_dynarec/assem_arm64.c
68  else
69  $(error no dynarec support for architecture $(ARCH))
70  endif
71 else
72 CFLAGS += -DDRC_DISABLE
73 endif
74 OBJS += libpcsxcore/new_dynarec/emu_if.o
75 libpcsxcore/new_dynarec/new_dynarec.o: libpcsxcore/new_dynarec/pcsxmem_inline.c
76 ifdef DRC_DBG
77 libpcsxcore/new_dynarec/emu_if.o: CFLAGS += -D_FILE_OFFSET_BITS=64
78 CFLAGS += -DDRC_DBG
79 endif
80 ifeq "$(BASE_ADDR_DYNAMIC)" "1"
81 libpcsxcore/new_dynarec/%.o: CFLAGS += -DBASE_ADDR_DYNAMIC=1
82 endif
83
84 # spu
85 OBJS += plugins/dfsound/dma.o plugins/dfsound/freeze.o \
86         plugins/dfsound/registers.o plugins/dfsound/spu.o \
87         plugins/dfsound/out.o plugins/dfsound/nullsnd.o
88 plugins/dfsound/spu.o: plugins/dfsound/adsr.c plugins/dfsound/reverb.c \
89         plugins/dfsound/xa.c
90 ifeq "$(ARCH)" "arm"
91 OBJS += plugins/dfsound/arm_utils.o
92 endif
93 ifeq "$(HAVE_C64_TOOLS)" "1"
94 plugins/dfsound/spu.o: CFLAGS += -DC64X_DSP
95 plugins/dfsound/spu.o: plugins/dfsound/spu_c64x.c
96 frontend/menu.o: CFLAGS += -DC64X_DSP
97 endif
98 ifneq ($(findstring oss,$(SOUND_DRIVERS)),)
99 plugins/dfsound/out.o: CFLAGS += -DHAVE_OSS
100 OBJS += plugins/dfsound/oss.o
101 endif
102 ifneq ($(findstring alsa,$(SOUND_DRIVERS)),)
103 plugins/dfsound/out.o: CFLAGS += -DHAVE_ALSA
104 OBJS += plugins/dfsound/alsa.o
105 LDLIBS += -lasound
106 endif
107 ifneq ($(findstring sdl,$(SOUND_DRIVERS)),)
108 plugins/dfsound/out.o: CFLAGS += -DHAVE_SDL
109 OBJS += plugins/dfsound/sdl.o
110 endif
111 ifneq ($(findstring pulseaudio,$(SOUND_DRIVERS)),)
112 plugins/dfsound/out.o: CFLAGS += -DHAVE_PULSE
113 OBJS += plugins/dfsound/pulseaudio.o
114 endif
115 ifneq ($(findstring libretro,$(SOUND_DRIVERS)),)
116 plugins/dfsound/out.o: CFLAGS += -DHAVE_LIBRETRO
117 endif
118
119 # builtin gpu
120 OBJS += plugins/gpulib/gpu.o plugins/gpulib/vout_pl.o
121 ifeq "$(BUILTIN_GPU)" "neon"
122 OBJS += plugins/gpu_neon/psx_gpu_if.o
123 plugins/gpu_neon/psx_gpu_if.o: CFLAGS += -DNEON_BUILD -DTEXTURE_CACHE_4BPP -DTEXTURE_CACHE_8BPP
124 plugins/gpu_neon/psx_gpu_if.o: plugins/gpu_neon/psx_gpu/*.c
125 frontend/menu.o frontend/plugin_lib.o: CFLAGS += -DBUILTIN_GPU_NEON
126  ifeq "$(HAVE_NEON_ASM)" "1"
127  OBJS += plugins/gpu_neon/psx_gpu/psx_gpu_arm_neon.o
128  else
129  OBJS += plugins/gpu_neon/psx_gpu/psx_gpu_simd.o
130  plugins/gpu_neon/psx_gpu_if.o: CFLAGS += -DSIMD_BUILD
131  plugins/gpu_neon/psx_gpu/psx_gpu_simd.o: CFLAGS += -DSIMD_BUILD
132  endif
133 endif
134 ifeq "$(BUILTIN_GPU)" "peops"
135 # note: code is not safe for strict-aliasing? (Castlevania problems)
136 plugins/dfxvideo/gpulib_if.o: CFLAGS += -fno-strict-aliasing
137 plugins/dfxvideo/gpulib_if.o: plugins/dfxvideo/prim.c plugins/dfxvideo/soft.c
138 OBJS += plugins/dfxvideo/gpulib_if.o
139 endif
140 ifeq "$(BUILTIN_GPU)" "unai"
141 OBJS += plugins/gpu_unai/gpulib_if.o
142 ifeq "$(ARCH)" "arm"
143 OBJS += plugins/gpu_unai/gpu_arm.o
144 endif
145 plugins/gpu_unai/gpulib_if.o: CFLAGS += -DREARMED -O3 
146 CC_LINK = $(CXX)
147 endif
148
149 ifeq "$(BUILTIN_GPU)" "senquack"
150 OBJS += plugins/gpu_senquack/gpulib_if.o
151 ifeq "$(ARCH)" "arm"
152 OBJS += plugins/gpu_senquack/gpu_arm.o
153 endif
154 plugins/gpu_senquack/gpulib_if.o: CFLAGS += -DREARMED -O3 
155 CC_LINK = $(CXX)
156 endif
157
158 # cdrcimg
159 OBJS += plugins/cdrcimg/cdrcimg.o
160 #ifeq "$(CHD_SUPPORT)" "1"
161 OBJS += libchdr/src/libchdr_bitstream.o
162 OBJS += libchdr/src/libchdr_cdrom.o
163 OBJS += libchdr/src/libchdr_chd.o
164 OBJS += libchdr/src/libchdr_flac.o
165 OBJS += libchdr/src/libchdr_huffman.o
166 OBJS += libchdr/deps/lzma-19.00/src/Alloc.o libchdr/deps/lzma-19.00/src/Bra86.o libchdr/deps/lzma-19.00/src/BraIA64.o libchdr/deps/lzma-19.00/src/CpuArch.o libchdr/deps/lzma-19.00/src/Delta.o
167 OBJS += libchdr/deps/lzma-19.00/src/LzFind.o libchdr/deps/lzma-19.00/src/Lzma86Dec.o libchdr/deps/lzma-19.00/src/LzmaDec.o libchdr/deps/lzma-19.00/src/LzmaEnc.o libchdr/deps/lzma-19.00/src/Sort.o
168 CFLAGS += -DHAVE_CHD -Ilibchdr/include
169 libpcsxcore/cdriso.o: CFLAGS += -Wno-unused-function
170 libchdr/src/%.o: CFLAGS += -Wno-unused -Ilibchdr/deps/lzma-19.00/include
171 libchdr/deps/lzma-19.00/src/%.o: CFLAGS += -Wno-unused -D_7ZIP_ST -Ilibchdr/deps/lzma-19.00/include
172 #endif
173
174 # dfinput
175 OBJS += plugins/dfinput/main.o plugins/dfinput/pad.o plugins/dfinput/guncon.o
176
177 # frontend/gui
178 OBJS += frontend/cspace.o
179 ifeq "$(HAVE_NEON_ASM)" "1"
180 OBJS += frontend/cspace_neon.o
181 frontend/cspace.o: CFLAGS += -DHAVE_bgr555_to_rgb565 -DHAVE_bgr888_to_x
182 else
183 ifeq "$(ARCH)" "arm"
184 OBJS += frontend/cspace_arm.o
185 frontend/cspace.o: CFLAGS += -DHAVE_bgr555_to_rgb565
186 endif
187 endif
188
189 ifeq "$(PLATFORM)" "generic"
190 OBJS += frontend/libpicofe/in_sdl.o
191 OBJS += frontend/libpicofe/plat_sdl.o
192 OBJS += frontend/libpicofe/plat_dummy.o
193 OBJS += frontend/libpicofe/linux/in_evdev.o
194 OBJS += frontend/plat_sdl.o
195 ifeq "$(HAVE_GLES)" "1"
196 OBJS += frontend/libpicofe/gl.o frontend/libpicofe/gl_platform.o
197 LDLIBS += $(LDLIBS_GLES)
198 frontend/libpicofe/plat_sdl.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES)
199 frontend/libpicofe/gl_platform.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES)
200 frontend/libpicofe/gl.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES)
201 frontend/plat_sdl.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES)
202 endif
203 USE_PLUGIN_LIB = 1
204 USE_FRONTEND = 1
205 endif
206 ifeq "$(PLATFORM)" "pandora"
207 OBJS += frontend/libpicofe/pandora/plat.o
208 OBJS += frontend/libpicofe/linux/fbdev.o frontend/libpicofe/linux/xenv.o
209 OBJS += frontend/libpicofe/linux/in_evdev.o
210 OBJS += frontend/plat_pandora.o frontend/plat_omap.o
211 frontend/main.o frontend/menu.o: CFLAGS += -include frontend/pandora/ui_feat.h
212 frontend/libpicofe/linux/plat.o: CFLAGS += -DPANDORA
213 USE_PLUGIN_LIB = 1
214 USE_FRONTEND = 1
215 endif
216 ifeq "$(PLATFORM)" "caanoo"
217 OBJS += frontend/libpicofe/gp2x/in_gp2x.o frontend/warm/warm.o
218 OBJS += frontend/libpicofe/gp2x/soc_pollux.o
219 OBJS += frontend/libpicofe/linux/in_evdev.o
220 OBJS += frontend/plat_pollux.o frontend/in_tsbutton.o frontend/blit320.o
221 frontend/main.o frontend/menu.o: CFLAGS += -include frontend/320240/ui_gp2x.h
222 USE_PLUGIN_LIB = 1
223 USE_FRONTEND = 1
224 endif
225 ifeq "$(PLATFORM)" "maemo"
226 OBJS += maemo/hildon.o maemo/main.o maemo/maemo_xkb.o frontend/pl_gun_ts.o
227 maemo/%.o: maemo/%.c
228 USE_PLUGIN_LIB = 1
229 LDFLAGS += $(shell pkg-config --libs hildon-1 libpulse)
230 CFLAGS += $(shell pkg-config --cflags hildon-1) -DHAVE_TSLIB
231 CFLAGS += `pkg-config --cflags glib-2.0 libosso dbus-1 hildon-fm-2`
232 LDFLAGS += `pkg-config --libs glib-2.0 libosso dbus-1 hildon-fm-2`
233 endif
234 ifeq "$(PLATFORM)" "libretro"
235 OBJS += frontend/libretro.o
236 CFLAGS += -DFRONTEND_SUPPORTS_RGB565
237
238 ifeq ($(MMAP_WIN32),1)
239 OBJS += libpcsxcore/memmap_win32.o
240 endif
241 endif
242
243 ifeq "$(USE_PLUGIN_LIB)" "1"
244 OBJS += frontend/plugin_lib.o
245 OBJS += frontend/libpicofe/linux/plat.o
246 OBJS += frontend/libpicofe/readpng.o frontend/libpicofe/fonts.o
247 frontend/libpicofe/linux/plat.o: CFLAGS += -DNO_HOME_DIR
248 ifeq "$(HAVE_NEON_ASM)" "1"
249 OBJS += frontend/libpicofe/arm/neon_scale2x.o
250 OBJS += frontend/libpicofe/arm/neon_eagle2x.o
251 frontend/libpicofe/arm/neon_scale2x.o: CFLAGS += -DDO_BGR_TO_RGB
252 frontend/libpicofe/arm/neon_eagle2x.o: CFLAGS += -DDO_BGR_TO_RGB
253 endif
254 endif
255 ifeq "$(USE_FRONTEND)" "1"
256 OBJS += frontend/menu.o
257 OBJS += frontend/libpicofe/input.o
258 frontend/menu.o: frontend/libpicofe/menu.c
259 ifeq "$(HAVE_TSLIB)" "1"
260 frontend/%.o: CFLAGS += -DHAVE_TSLIB
261 OBJS += frontend/pl_gun_ts.o
262 endif
263 else
264 CFLAGS += -DNO_FRONTEND
265 endif
266
267 # misc
268 OBJS += frontend/main.o frontend/plugin.o
269
270
271 frontend/menu.o frontend/main.o: frontend/revision.h
272 frontend/plat_sdl.o frontend/libretro.o: frontend/revision.h
273
274 frontend/libpicofe/%.c:
275         @echo "libpicofe module is missing, please run:"
276         @echo "git submodule init && git submodule update"
277         @exit 1
278
279 libpcsxcore/gte_nf.o: libpcsxcore/gte.c
280         $(CC) -c -o $@ $^ $(CFLAGS) -DFLAGLESS
281
282 frontend/revision.h: FORCE
283         @(git describe --always || echo) | sed -e 's/.*/#define REV "\0"/' > $@_
284         @diff -q $@_ $@ > /dev/null 2>&1 || cp $@_ $@
285         @rm $@_
286
287 %.o: %.S
288         $(CC_AS) $(CFLAGS) -c $^ -o $@
289
290
291 target_: $(TARGET)
292
293 $(TARGET): $(OBJS)
294         $(CC_LINK) -o $@ $^ $(LDFLAGS) $(LDLIBS) $(EXTRA_LDFLAGS)
295
296 clean: $(PLAT_CLEAN) clean_plugins
297         $(RM) $(TARGET) $(OBJS) $(TARGET).map frontend/revision.h
298
299 ifneq ($(PLUGINS),)
300 plugins_: $(PLUGINS)
301
302 $(PLUGINS):
303         make -C $(dir $@)
304
305 clean_plugins:
306         make -C plugins/gpulib/ clean
307         for dir in $(PLUGINS) ; do \
308                 $(MAKE) -C $$(dirname $$dir) clean; done
309 else
310 plugins_:
311 clean_plugins:
312 endif
313
314 .PHONY: all clean target_ plugins_ clean_plugins FORCE
315
316 ifneq "$(PLATFORM)" "pandora"
317 ifdef CPATH
318 $(warning warning: CPATH is defined)
319 endif
320 endif
321
322 # ----------- release -----------
323
324 VER ?= $(shell git describe --always HEAD)
325
326 ifeq "$(PLATFORM)" "generic"
327 OUT = pcsx_rearmed_$(VER)
328
329 rel: pcsx $(PLUGINS) \
330                 frontend/pandora/skin readme.txt COPYING
331         rm -rf $(OUT)
332         mkdir -p $(OUT)/plugins
333         mkdir -p $(OUT)/bios
334         cp -r $^ $(OUT)/
335         mv $(OUT)/*.so* $(OUT)/plugins/
336         zip -9 -r $(OUT).zip $(OUT)
337 endif
338
339 ifeq "$(PLATFORM)" "pandora"
340 PND_MAKE ?= $(HOME)/dev/pnd/src/pandora-libraries/testdata/scripts/pnd_make.sh
341
342 rel: pcsx plugins/dfsound/pcsxr_spu_area3.out $(PLUGINS) \
343                 frontend/pandora/pcsx.sh frontend/pandora/pcsx.pxml.templ frontend/pandora/pcsx.png \
344                 frontend/pandora/picorestore frontend/pandora/skin readme.txt COPYING
345         rm -rf out
346         mkdir -p out/plugins
347         cp -r $^ out/
348         sed -e 's/%PR%/$(VER)/g' out/pcsx.pxml.templ > out/pcsx.pxml
349         rm out/pcsx.pxml.templ
350         mv out/*.so out/plugins/
351         $(PND_MAKE) -p pcsx_rearmed_$(VER).pnd -d out -x out/pcsx.pxml -i frontend/pandora/pcsx.png -c
352 endif
353
354 ifeq "$(PLATFORM)" "caanoo"
355 PLAT_CLEAN = caanoo_clean
356
357 caanoo_clean:
358         $(RM) frontend/320240/pollux_set
359
360 rel: pcsx $(PLUGINS) \
361                 frontend/320240/caanoo.gpe frontend/320240/pcsx26.png \
362                 frontend/320240/pcsxb.png frontend/320240/skin \
363                 frontend/warm/bin/warm_2.6.24.ko frontend/320240/pollux_set \
364                 frontend/320240/pcsx_rearmed.ini frontend/320240/haptic_w.cfg \
365                 frontend/320240/haptic_s.cfg \
366                 readme.txt COPYING
367         rm -rf out
368         mkdir -p out/pcsx_rearmed/plugins
369         cp -r $^ out/pcsx_rearmed/
370         mv out/pcsx_rearmed/*.so out/pcsx_rearmed/plugins/
371         mv out/pcsx_rearmed/caanoo.gpe out/pcsx_rearmed/pcsx.gpe
372         mv out/pcsx_rearmed/pcsx_rearmed.ini out/
373         mkdir out/pcsx_rearmed/lib/
374         cp ./lib/libbz2.so.1 out/pcsx_rearmed/lib/
375         mkdir out/pcsx_rearmed/bios/
376         cd out && zip -9 -r ../pcsx_rearmed_$(VER)_caanoo.zip *
377 endif