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