(VITA) Enable O3 optimizations
[pcsx_rearmed.git] / Makefile
CommitLineData
4132e8ca 1# Makefile for PCSX ReARMed
a80ae4a0 2
61bc6d40 3# default stuff goes here, so that config can override
9aff1963 4TARGET ?= pcsx
9b400da1 5CFLAGS += -Wall -Iinclude -ffast-math
6ifeq ($(DEBUG), 1)
0f97d2d8 7CFLAGS += -O0 -ggdb
9b400da1 8else
73081f23 9ifeq ($(platform), vita)
30373936 10CFLAGS += -O3 -DNDEBUG
73081f23 11else
cfbd3c6e 12CFLAGS += -O2 -DNDEBUG
b60f2812 13endif
73081f23 14endif
61bc6d40 15CXXFLAGS += $(CFLAGS)
4132e8ca 16#DRC_DBG = 1
17#PCNT = 1
80c2304e 18
38c2028e 19all: config.mak target_ plugins_
de38f20e 20
9aff1963 21ifndef NO_CONFIG_MAK
4132e8ca 22ifneq ($(wildcard config.mak),)
23config.mak: ./configure
24 @echo $@ is out-of-date, running configure
25 @sed -n "/.*Configured with/s/[^:]*: //p" $@ | sh
26include config.mak
27else
28config.mak:
29 @echo "Please run ./configure before running make!"
30 @exit 1
31endif
9aff1963 32else # NO_CONFIG_MAK
33config.mak:
34endif
35
4132e8ca 36-include Makefile.local
80c2304e 37
9aff1963 38CC_LINK ?= $(CC)
39CC_AS ?= $(CC)
22fa3f2b 40LDFLAGS += $(MAIN_LDFLAGS)
9aff1963 41EXTRA_LDFLAGS ?= -Wl,-Map=$@.map
07c13dfd 42LDLIBS += $(MAIN_LDLIBS)
e0aec5ee 43ifdef PCNT
44CFLAGS += -DPCNT
45endif
61bc6d40 46
80c2304e 47# core
48OBJS += libpcsxcore/cdriso.o libpcsxcore/cdrom.o libpcsxcore/cheat.o libpcsxcore/debug.o \
3ebefe71 49 libpcsxcore/decode_xa.o libpcsxcore/disr3000a.o libpcsxcore/mdec.o \
80c2304e 50 libpcsxcore/misc.o libpcsxcore/plugins.o libpcsxcore/ppf.o libpcsxcore/psxbios.o \
51 libpcsxcore/psxcommon.o libpcsxcore/psxcounters.o libpcsxcore/psxdma.o libpcsxcore/psxhle.o \
52 libpcsxcore/psxhw.o libpcsxcore/psxinterpreter.o libpcsxcore/psxmem.o libpcsxcore/r3000a.o \
53 libpcsxcore/sio.o libpcsxcore/socket.o libpcsxcore/spu.o
59774ed0 54OBJS += libpcsxcore/gte.o libpcsxcore/gte_nf.o libpcsxcore/gte_divider.o
55ifeq "$(ARCH)" "arm"
56OBJS += libpcsxcore/gte_arm.o
57endif
a80ae4a0 58ifeq "$(HAVE_NEON)" "1"
8cfbda97 59OBJS += libpcsxcore/gte_neon.o
60endif
305c8c93 61libpcsxcore/psxbios.o: CFLAGS += -Wno-nonnull
ab948f7e 62
f95a77f7 63# dynarec
4132e8ca 64ifeq "$(USE_DYNAREC)" "1"
7139f3c8 65OBJS += libpcsxcore/new_dynarec/new_dynarec.o libpcsxcore/new_dynarec/linkage_arm.o
7e605697 66OBJS += libpcsxcore/new_dynarec/pcsxmem.o
448bbcae 67else
68libpcsxcore/new_dynarec/emu_if.o: CFLAGS += -DDRC_DISABLE
48f615ba 69frontend/libretro.o: CFLAGS += -DDRC_DISABLE
7139f3c8 70endif
71OBJS += libpcsxcore/new_dynarec/emu_if.o
b1be1eee 72libpcsxcore/new_dynarec/new_dynarec.o: libpcsxcore/new_dynarec/assem_arm.c \
73 libpcsxcore/new_dynarec/pcsxmem_inline.c
3eb78778 74ifdef DRC_DBG
75libpcsxcore/new_dynarec/emu_if.o: CFLAGS += -D_FILE_OFFSET_BITS=64
76CFLAGS += -DDRC_DBG
77endif
4132e8ca 78ifeq "$(DRC_CACHE_BASE)" "1"
79libpcsxcore/new_dynarec/%.o: CFLAGS += -DBASE_ADDR_FIXED=1
a327ad27 80endif
f95a77f7 81
e906c010 82# spu
ee849648 83OBJS += plugins/dfsound/dma.o plugins/dfsound/freeze.o \
07c13dfd 84 plugins/dfsound/registers.o plugins/dfsound/spu.o \
85 plugins/dfsound/out.o plugins/dfsound/nullsnd.o
6d866bb7 86plugins/dfsound/spu.o: plugins/dfsound/adsr.c plugins/dfsound/reverb.c \
87 plugins/dfsound/xa.c
3a721c1f 88ifeq "$(ARCH)" "arm"
b17618c0 89OBJS += plugins/dfsound/arm_utils.o
90endif
5514a050 91ifeq "$(HAVE_C64_TOOLS)" "1"
92plugins/dfsound/spu.o: CFLAGS += -DC64X_DSP
93plugins/dfsound/spu.o: plugins/dfsound/spu_c64x.c
8886a808 94frontend/menu.o: CFLAGS += -DC64X_DSP
5514a050 95endif
07c13dfd 96ifneq ($(findstring oss,$(SOUND_DRIVERS)),)
97plugins/dfsound/out.o: CFLAGS += -DHAVE_OSS
de38f20e 98OBJS += plugins/dfsound/oss.o
99endif
07c13dfd 100ifneq ($(findstring alsa,$(SOUND_DRIVERS)),)
101plugins/dfsound/out.o: CFLAGS += -DHAVE_ALSA
de38f20e 102OBJS += plugins/dfsound/alsa.o
4132e8ca 103LDLIBS += -lasound
104endif
07c13dfd 105ifneq ($(findstring sdl,$(SOUND_DRIVERS)),)
106plugins/dfsound/out.o: CFLAGS += -DHAVE_SDL
d8a2f79b 107OBJS += plugins/dfsound/sdl.o
108endif
07c13dfd 109ifneq ($(findstring pulseaudio,$(SOUND_DRIVERS)),)
110plugins/dfsound/out.o: CFLAGS += -DHAVE_PULSE
111OBJS += plugins/dfsound/pulseaudio.o
112endif
113ifneq ($(findstring libretro,$(SOUND_DRIVERS)),)
114plugins/dfsound/out.o: CFLAGS += -DHAVE_LIBRETRO
de38f20e 115endif
116
61bc6d40 117# builtin gpu
118OBJS += plugins/gpulib/gpu.o plugins/gpulib/vout_pl.o
61bc6d40 119ifeq "$(BUILTIN_GPU)" "neon"
90ca4913 120OBJS += plugins/gpu_neon/psx_gpu_if.o plugins/gpu_neon/psx_gpu/psx_gpu_arm_neon.o
121plugins/gpu_neon/psx_gpu_if.o: CFLAGS += -DNEON_BUILD -DTEXTURE_CACHE_4BPP -DTEXTURE_CACHE_8BPP
122plugins/gpu_neon/psx_gpu_if.o: plugins/gpu_neon/psx_gpu/*.c
61bc6d40 123endif
124ifeq "$(BUILTIN_GPU)" "peops"
2ef486ee 125# note: code is not safe for strict-aliasing? (Castlevania problems)
62d7fa95 126plugins/dfxvideo/gpulib_if.o: CFLAGS += -fno-strict-aliasing
127plugins/dfxvideo/gpulib_if.o: plugins/dfxvideo/prim.c plugins/dfxvideo/soft.c
128OBJS += plugins/dfxvideo/gpulib_if.o
90ca4913 129endif
61bc6d40 130ifeq "$(BUILTIN_GPU)" "unai"
61bc6d40 131OBJS += plugins/gpu_unai/gpulib_if.o
132ifeq "$(ARCH)" "arm"
133OBJS += plugins/gpu_unai/gpu_arm.o
134endif
46aa5b98 135plugins/gpu_unai/gpulib_if.o: CFLAGS += -DREARMED -O3
61bc6d40 136CC_LINK = $(CXX)
b60f2812 137endif
e0c692d9 138
47bf65ab 139# cdrcimg
47bf65ab 140OBJS += plugins/cdrcimg/cdrcimg.o
e906c010 141
384f5f43 142# dfinput
4c08b9e7 143OBJS += plugins/dfinput/main.o plugins/dfinput/pad.o plugins/dfinput/guncon.o
384f5f43 144
cc56203b 145# frontend/gui
c82f907a 146OBJS += frontend/cspace.o
147ifeq "$(HAVE_NEON)" "1"
148OBJS += frontend/cspace_neon.o
d57557c0 149else
150ifeq "$(ARCH)" "arm"
151OBJS += frontend/cspace_arm.o
152endif
c82f907a 153endif
154
4132e8ca 155ifeq "$(PLATFORM)" "generic"
5b9aa749 156OBJS += frontend/libpicofe/in_sdl.o
157OBJS += frontend/libpicofe/plat_sdl.o
cc56203b 158OBJS += frontend/libpicofe/plat_dummy.o
159OBJS += frontend/libpicofe/linux/in_evdev.o
5b9aa749 160OBJS += frontend/plat_sdl.o
161ifeq "$(HAVE_GLES)" "1"
2c616080 162OBJS += frontend/libpicofe/gl.o frontend/libpicofe/gl_platform.o
5b9aa749 163LDLIBS += $(LDLIBS_GLES)
164frontend/libpicofe/plat_sdl.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES)
2c616080 165frontend/libpicofe/gl_platform.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES)
5b9aa749 166frontend/libpicofe/gl.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES)
167frontend/plat_sdl.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES)
168endif
cc56203b 169USE_PLUGIN_LIB = 1
38c2028e 170USE_FRONTEND = 1
4132e8ca 171endif
55b0eeea 172ifeq "$(PLATFORM)" "pandora"
cc56203b 173OBJS += frontend/libpicofe/pandora/plat.o
174OBJS += frontend/libpicofe/linux/fbdev.o frontend/libpicofe/linux/xenv.o
175OBJS += frontend/libpicofe/linux/in_evdev.o
176OBJS += frontend/plat_pandora.o frontend/plat_omap.o
da710571 177frontend/main.o frontend/menu.o: CFLAGS += -include frontend/pandora/ui_feat.h
3aba4185 178frontend/libpicofe/linux/plat.o: CFLAGS += -DPANDORA
cc56203b 179USE_PLUGIN_LIB = 1
38c2028e 180USE_FRONTEND = 1
4132e8ca 181endif
55b0eeea 182ifeq "$(PLATFORM)" "caanoo"
cc56203b 183OBJS += frontend/libpicofe/gp2x/in_gp2x.o frontend/warm/warm.o
184OBJS += frontend/libpicofe/gp2x/soc_pollux.o
185OBJS += frontend/libpicofe/linux/in_evdev.o
faf2b2aa 186OBJS += frontend/plat_pollux.o frontend/in_tsbutton.o frontend/blit320.o
da710571 187frontend/main.o frontend/menu.o: CFLAGS += -include frontend/320240/ui_gp2x.h
cc56203b 188USE_PLUGIN_LIB = 1
38c2028e 189USE_FRONTEND = 1
190endif
191ifeq "$(PLATFORM)" "maemo"
baaef67b 192OBJS += maemo/hildon.o maemo/main.o maemo/maemo_xkb.o frontend/pl_gun_ts.o
38c2028e 193maemo/%.o: maemo/%.c
cc56203b 194USE_PLUGIN_LIB = 1
a76fd953 195LDFLAGS += $(shell pkg-config --libs hildon-1 libpulse)
7010034e 196CFLAGS += $(shell pkg-config --cflags hildon-1) -DHAVE_TSLIB
a76fd953
PI
197CFLAGS += `pkg-config --cflags glib-2.0 libosso dbus-1 hildon-fm-2`
198LDFLAGS += `pkg-config --libs glib-2.0 libosso dbus-1 hildon-fm-2`
38c2028e 199endif
200ifeq "$(PLATFORM)" "libretro"
201OBJS += frontend/libretro.o
46aa5b98 202CFLAGS += -DFRONTEND_SUPPORTS_RGB565
f40e483e 203CFLAGS += -DHAVE_LIBRETRO
ce0e7ac9 204
205ifeq ($(MMAP_WIN32),1)
206OBJS += libpcsxcore/memmap_win32.o
207endif
38c2028e 208endif
cc56203b 209
210ifeq "$(USE_PLUGIN_LIB)" "1"
38c2028e 211OBJS += frontend/plugin_lib.o
cc56203b 212OBJS += frontend/libpicofe/linux/plat.o
213OBJS += frontend/libpicofe/readpng.o frontend/libpicofe/fonts.o
214ifeq "$(HAVE_NEON)" "1"
215OBJS += frontend/libpicofe/arm/neon_scale2x.o
216OBJS += frontend/libpicofe/arm/neon_eagle2x.o
217frontend/libpicofe/arm/neon_scale2x.o: CFLAGS += -DDO_BGR_TO_RGB
218frontend/libpicofe/arm/neon_eagle2x.o: CFLAGS += -DDO_BGR_TO_RGB
219endif
220endif
221ifeq "$(USE_FRONTEND)" "1"
222OBJS += frontend/menu.o
223OBJS += frontend/libpicofe/input.o
224frontend/menu.o: frontend/libpicofe/menu.c
38c2028e 225ifeq "$(HAVE_TSLIB)" "1"
226frontend/%.o: CFLAGS += -DHAVE_TSLIB
227OBJS += frontend/pl_gun_ts.o
228endif
229else
230CFLAGS += -DNO_FRONTEND
55b0eeea 231endif
a80ae4a0 232
cc56203b 233# misc
234OBJS += frontend/main.o frontend/plugin.o
235
e0aec5ee 236
a1a232ad 237frontend/menu.o frontend/main.o: frontend/revision.h
238frontend/plat_sdl.o frontend/libretro.o: frontend/revision.h
3c70c47b 239
cc56203b 240frontend/libpicofe/%.c:
fa56d360 241 @echo "libpicofe module is missing, please run:"
242 @echo "git submodule init && git submodule update"
243 @exit 1
244
59774ed0 245libpcsxcore/gte_nf.o: libpcsxcore/gte.c
246 $(CC) -c -o $@ $^ $(CFLAGS) -DFLAGLESS
247
3c70c47b 248frontend/revision.h: FORCE
249 @(git describe || echo) | sed -e 's/.*/#define REV "\0"/' > $@_
250 @diff -q $@_ $@ > /dev/null 2>&1 || cp $@_ $@
251 @rm $@_
3c70c47b 252
90ca4913 253%.o: %.S
9aff1963 254 $(CC_AS) $(CFLAGS) -c $^ -o $@
80c2304e 255
fc99395c 256%.o: %.cpp
257 $(CXX) $(CXXFLAGS) -c -o $@ $<
258
259
e0aec5ee 260
38c2028e 261target_: $(TARGET)
262
80c2304e 263$(TARGET): $(OBJS)
fc99395c 264ifeq ($(STATIC_LINKING), 1)
265 $(AR) rcs $@ $(OBJS)
266else
9aff1963 267 $(CC_LINK) -o $@ $^ $(LDFLAGS) $(LDLIBS) $(EXTRA_LDFLAGS)
fc99395c 268endif
80c2304e 269
dd4d5a35 270clean: $(PLAT_CLEAN) clean_plugins
a1a232ad 271 $(RM) $(TARGET) $(OBJS) $(TARGET).map frontend/revision.h
0d464c77 272
4132e8ca 273ifneq ($(PLUGINS),)
dd4d5a35 274plugins_: $(PLUGINS)
275
ee78346e 276$(PLUGINS):
277 make -C $(dir $@)
f932e54b 278
ee78346e 279clean_plugins:
ea1f6f2f 280 make -C plugins/gpulib/ clean
ee78346e 281 for dir in $(PLUGINS) ; do \
282 $(MAKE) -C $$(dirname $$dir) clean; done
dd4d5a35 283else
284plugins_:
285clean_plugins:
4132e8ca 286endif
80c2304e 287
fa56d360 288.PHONY: all clean target_ plugins_ clean_plugins FORCE
289
303ee308 290# ----------- release -----------
291
cd5abe38 292VER ?= $(shell git describe HEAD)
4132e8ca 293
dd4d5a35 294ifeq "$(PLATFORM)" "generic"
295OUT = pcsx_rearmed_$(VER)
296
297rel: pcsx $(PLUGINS) \
298 frontend/pandora/skin readme.txt COPYING
299 rm -rf $(OUT)
300 mkdir -p $(OUT)/plugins
301 mkdir -p $(OUT)/bios
302 cp -r $^ $(OUT)/
303 mv $(OUT)/*.so* $(OUT)/plugins/
304 zip -9 -r $(OUT).zip $(OUT)
305endif
306
4132e8ca 307ifeq "$(PLATFORM)" "pandora"
303ee308 308PND_MAKE ?= $(HOME)/dev/pnd/src/pandora-libraries/testdata/scripts/pnd_make.sh
309
8886a808 310rel: pcsx plugins/dfsound/pcsxr_spu_area3.out $(PLUGINS) \
9e0630ab 311 frontend/pandora/pcsx.sh frontend/pandora/pcsx.pxml.templ frontend/pandora/pcsx.png \
312 frontend/pandora/picorestore frontend/pandora/skin readme.txt COPYING
303ee308 313 rm -rf out
bbd837c6 314 mkdir -p out/plugins
303ee308 315 cp -r $^ out/
3938f69a 316 sed -e 's/%PR%/$(VER)/g' out/pcsx.pxml.templ > out/pcsx.pxml
317 rm out/pcsx.pxml.templ
bbd837c6 318 mv out/*.so out/plugins/
9e0630ab 319 $(PND_MAKE) -p pcsx_rearmed_$(VER).pnd -d out -x out/pcsx.pxml -i frontend/pandora/pcsx.png -c
4132e8ca 320endif
321
322ifeq "$(PLATFORM)" "caanoo"
323PLAT_CLEAN = caanoo_clean
324
325caanoo_clean:
326 $(RM) frontend/320240/pollux_set
327
4132e8ca 328rel: pcsx $(PLUGINS) \
329 frontend/320240/caanoo.gpe frontend/320240/pcsx26.png \
330 frontend/320240/pcsxb.png frontend/320240/skin \
331 frontend/warm/bin/warm_2.6.24.ko frontend/320240/pollux_set \
332 frontend/320240/pcsx_rearmed.ini frontend/320240/haptic_w.cfg \
333 frontend/320240/haptic_s.cfg \
334 readme.txt COPYING
335 rm -rf out
336 mkdir -p out/pcsx_rearmed/plugins
337 cp -r $^ out/pcsx_rearmed/
4132e8ca 338 mv out/pcsx_rearmed/*.so out/pcsx_rearmed/plugins/
339 mv out/pcsx_rearmed/caanoo.gpe out/pcsx_rearmed/pcsx.gpe
340 mv out/pcsx_rearmed/pcsx_rearmed.ini out/
341 mkdir out/pcsx_rearmed/lib/
342 cp ./lib/libbz2.so.1 out/pcsx_rearmed/lib/
343 mkdir out/pcsx_rearmed/bios/
344 cd out && zip -9 -r ../pcsx_rearmed_$(VER)_caanoo.zip *
345endif