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