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