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