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