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