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