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