Support compiling without posix_memalign() function
[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
f28d12a7 9CFLAGS += -DHAVE_MMAP=$(if $(NO_MMAP),0,1) \
cddc7ca9
PC
10 -DHAVE_PTHREAD=$(if $(NO_PTHREAD),0,1) \
11 -DHAVE_POSIX_MEMALIGN=$(if $(NO_POSIX_MEMALIGN),0,1)
61bc6d40 12CXXFLAGS += $(CFLAGS)
4132e8ca 13#DRC_DBG = 1
14#PCNT = 1
80c2304e 15
38c2028e 16all: config.mak target_ plugins_
de38f20e 17
9aff1963 18ifndef NO_CONFIG_MAK
4132e8ca 19ifneq ($(wildcard config.mak),)
20config.mak: ./configure
21 @echo $@ is out-of-date, running configure
22 @sed -n "/.*Configured with/s/[^:]*: //p" $@ | sh
23include config.mak
24else
25config.mak:
26 @echo "Please run ./configure before running make!"
27 @exit 1
28endif
9aff1963 29else # NO_CONFIG_MAK
30config.mak:
31endif
32
4132e8ca 33-include Makefile.local
80c2304e 34
9aff1963 35CC_LINK ?= $(CC)
36CC_AS ?= $(CC)
22fa3f2b 37LDFLAGS += $(MAIN_LDFLAGS)
9aff1963 38EXTRA_LDFLAGS ?= -Wl,-Map=$@.map
07c13dfd 39LDLIBS += $(MAIN_LDLIBS)
e0aec5ee 40ifdef PCNT
41CFLAGS += -DPCNT
42endif
61bc6d40 43
80c2304e 44# core
7d7672a5 45OBJS += libpcsxcore/cdriso.o libpcsxcore/cdrom.o libpcsxcore/cheat.o libpcsxcore/database.o \
46 libpcsxcore/decode_xa.o libpcsxcore/mdec.o \
80c2304e 47 libpcsxcore/misc.o libpcsxcore/plugins.o libpcsxcore/ppf.o libpcsxcore/psxbios.o \
48 libpcsxcore/psxcommon.o libpcsxcore/psxcounters.o libpcsxcore/psxdma.o libpcsxcore/psxhle.o \
49 libpcsxcore/psxhw.o libpcsxcore/psxinterpreter.o libpcsxcore/psxmem.o libpcsxcore/r3000a.o \
7d7672a5 50 libpcsxcore/sio.o libpcsxcore/spu.o
59774ed0 51OBJS += libpcsxcore/gte.o libpcsxcore/gte_nf.o libpcsxcore/gte_divider.o
7d7672a5 52#OBJS += libpcsxcore/debug.o libpcsxcore/socket.o libpcsxcore/disr3000a.o
59774ed0 53ifeq "$(ARCH)" "arm"
54OBJS += libpcsxcore/gte_arm.o
55endif
57467c77 56ifeq "$(HAVE_NEON_ASM)" "1"
8cfbda97 57OBJS += libpcsxcore/gte_neon.o
58endif
305c8c93 59libpcsxcore/psxbios.o: CFLAGS += -Wno-nonnull
ab948f7e 60
f95a77f7 61# dynarec
4132e8ca 62ifeq "$(USE_DYNAREC)" "1"
be516ebe 63OBJS += libpcsxcore/new_dynarec/new_dynarec.o
7e605697 64OBJS += libpcsxcore/new_dynarec/pcsxmem.o
be516ebe 65 ifeq "$(ARCH)" "arm"
66 OBJS += libpcsxcore/new_dynarec/linkage_arm.o
687b4580 67 libpcsxcore/new_dynarec/new_dynarec.o: libpcsxcore/new_dynarec/assem_arm.c
57467c77 68 else ifneq (,$(findstring $(ARCH),aarch64 arm64))
be516ebe 69 OBJS += libpcsxcore/new_dynarec/linkage_arm64.o
687b4580 70 libpcsxcore/new_dynarec/new_dynarec.o: libpcsxcore/new_dynarec/assem_arm64.c
be516ebe 71 else
72 $(error no dynarec support for architecture $(ARCH))
73 endif
448bbcae 74else
41e82ad4 75CFLAGS += -DDRC_DISABLE
7139f3c8 76endif
6d75addf 77OBJS += libpcsxcore/new_dynarec/emu_if.o libpcsxcore/new_dynarec/events.o
687b4580 78libpcsxcore/new_dynarec/new_dynarec.o: libpcsxcore/new_dynarec/pcsxmem_inline.c
3eb78778 79ifdef DRC_DBG
80libpcsxcore/new_dynarec/emu_if.o: CFLAGS += -D_FILE_OFFSET_BITS=64
81CFLAGS += -DDRC_DBG
82endif
2a014d73 83ifeq "$(BASE_ADDR_DYNAMIC)" "1"
84libpcsxcore/new_dynarec/%.o: CFLAGS += -DBASE_ADDR_DYNAMIC=1
a327ad27 85endif
f95a77f7 86
e906c010 87# spu
ee849648 88OBJS += plugins/dfsound/dma.o plugins/dfsound/freeze.o \
07c13dfd 89 plugins/dfsound/registers.o plugins/dfsound/spu.o \
90 plugins/dfsound/out.o plugins/dfsound/nullsnd.o
6d866bb7 91plugins/dfsound/spu.o: plugins/dfsound/adsr.c plugins/dfsound/reverb.c \
92 plugins/dfsound/xa.c
3a721c1f 93ifeq "$(ARCH)" "arm"
b17618c0 94OBJS += plugins/dfsound/arm_utils.o
95endif
5514a050 96ifeq "$(HAVE_C64_TOOLS)" "1"
97plugins/dfsound/spu.o: CFLAGS += -DC64X_DSP
98plugins/dfsound/spu.o: plugins/dfsound/spu_c64x.c
8886a808 99frontend/menu.o: CFLAGS += -DC64X_DSP
5514a050 100endif
07c13dfd 101ifneq ($(findstring oss,$(SOUND_DRIVERS)),)
102plugins/dfsound/out.o: CFLAGS += -DHAVE_OSS
de38f20e 103OBJS += plugins/dfsound/oss.o
104endif
07c13dfd 105ifneq ($(findstring alsa,$(SOUND_DRIVERS)),)
106plugins/dfsound/out.o: CFLAGS += -DHAVE_ALSA
de38f20e 107OBJS += plugins/dfsound/alsa.o
4132e8ca 108LDLIBS += -lasound
109endif
07c13dfd 110ifneq ($(findstring sdl,$(SOUND_DRIVERS)),)
111plugins/dfsound/out.o: CFLAGS += -DHAVE_SDL
d8a2f79b 112OBJS += plugins/dfsound/sdl.o
113endif
07c13dfd 114ifneq ($(findstring pulseaudio,$(SOUND_DRIVERS)),)
115plugins/dfsound/out.o: CFLAGS += -DHAVE_PULSE
116OBJS += plugins/dfsound/pulseaudio.o
117endif
118ifneq ($(findstring libretro,$(SOUND_DRIVERS)),)
119plugins/dfsound/out.o: CFLAGS += -DHAVE_LIBRETRO
de38f20e 120endif
121
61bc6d40 122# builtin gpu
123OBJS += plugins/gpulib/gpu.o plugins/gpulib/vout_pl.o
61bc6d40 124ifeq "$(BUILTIN_GPU)" "neon"
57467c77 125OBJS += plugins/gpu_neon/psx_gpu_if.o
90ca4913 126plugins/gpu_neon/psx_gpu_if.o: CFLAGS += -DNEON_BUILD -DTEXTURE_CACHE_4BPP -DTEXTURE_CACHE_8BPP
127plugins/gpu_neon/psx_gpu_if.o: plugins/gpu_neon/psx_gpu/*.c
57467c77 128frontend/menu.o frontend/plugin_lib.o: CFLAGS += -DBUILTIN_GPU_NEON
129 ifeq "$(HAVE_NEON_ASM)" "1"
130 OBJS += plugins/gpu_neon/psx_gpu/psx_gpu_arm_neon.o
131 else
132 OBJS += plugins/gpu_neon/psx_gpu/psx_gpu_simd.o
133 plugins/gpu_neon/psx_gpu_if.o: CFLAGS += -DSIMD_BUILD
134 plugins/gpu_neon/psx_gpu/psx_gpu_simd.o: CFLAGS += -DSIMD_BUILD
135 endif
61bc6d40 136endif
137ifeq "$(BUILTIN_GPU)" "peops"
2ef486ee 138# note: code is not safe for strict-aliasing? (Castlevania problems)
62d7fa95 139plugins/dfxvideo/gpulib_if.o: CFLAGS += -fno-strict-aliasing
140plugins/dfxvideo/gpulib_if.o: plugins/dfxvideo/prim.c plugins/dfxvideo/soft.c
141OBJS += plugins/dfxvideo/gpulib_if.o
90ca4913 142endif
61bc6d40 143ifeq "$(BUILTIN_GPU)" "unai"
61bc6d40 144OBJS += plugins/gpu_unai/gpulib_if.o
145ifeq "$(ARCH)" "arm"
146OBJS += plugins/gpu_unai/gpu_arm.o
147endif
46aa5b98 148plugins/gpu_unai/gpulib_if.o: CFLAGS += -DREARMED -O3
61bc6d40 149CC_LINK = $(CXX)
b60f2812 150endif
e0c692d9 151
0bfe8d59 152ifeq "$(BUILTIN_GPU)" "senquack"
153OBJS += plugins/gpu_senquack/gpulib_if.o
154ifeq "$(ARCH)" "arm"
155OBJS += plugins/gpu_senquack/gpu_arm.o
156endif
157plugins/gpu_senquack/gpulib_if.o: CFLAGS += -DREARMED -O3
158CC_LINK = $(CXX)
159endif
160
47bf65ab 161# cdrcimg
47bf65ab 162OBJS += plugins/cdrcimg/cdrcimg.o
68e7d409 163#ifeq "$(CHD_SUPPORT)" "1"
00f0670c 164OBJS += libchdr/src/libchdr_bitstream.o
165OBJS += libchdr/src/libchdr_cdrom.o
166OBJS += libchdr/src/libchdr_chd.o
167OBJS += libchdr/src/libchdr_flac.o
168OBJS += libchdr/src/libchdr_huffman.o
169OBJS += libchdr/deps/lzma-19.00/src/Alloc.o libchdr/deps/lzma-19.00/src/Bra86.o libchdr/deps/lzma-19.00/src/BraIA64.o libchdr/deps/lzma-19.00/src/CpuArch.o libchdr/deps/lzma-19.00/src/Delta.o
170OBJS += libchdr/deps/lzma-19.00/src/LzFind.o libchdr/deps/lzma-19.00/src/Lzma86Dec.o libchdr/deps/lzma-19.00/src/LzmaDec.o libchdr/deps/lzma-19.00/src/LzmaEnc.o libchdr/deps/lzma-19.00/src/Sort.o
68e7d409 171CFLAGS += -DHAVE_CHD -Ilibchdr/include
172libpcsxcore/cdriso.o: CFLAGS += -Wno-unused-function
173libchdr/src/%.o: CFLAGS += -Wno-unused -Ilibchdr/deps/lzma-19.00/include
174libchdr/deps/lzma-19.00/src/%.o: CFLAGS += -Wno-unused -D_7ZIP_ST -Ilibchdr/deps/lzma-19.00/include
175#endif
e906c010 176
384f5f43 177# dfinput
4c08b9e7 178OBJS += plugins/dfinput/main.o plugins/dfinput/pad.o plugins/dfinput/guncon.o
384f5f43 179
cc56203b 180# frontend/gui
c82f907a 181OBJS += frontend/cspace.o
57467c77 182ifeq "$(HAVE_NEON_ASM)" "1"
c82f907a 183OBJS += frontend/cspace_neon.o
57467c77 184frontend/cspace.o: CFLAGS += -DHAVE_bgr555_to_rgb565 -DHAVE_bgr888_to_x
d57557c0 185else
186ifeq "$(ARCH)" "arm"
187OBJS += frontend/cspace_arm.o
57467c77 188frontend/cspace.o: CFLAGS += -DHAVE_bgr555_to_rgb565
d57557c0 189endif
c82f907a 190endif
191
4132e8ca 192ifeq "$(PLATFORM)" "generic"
5b9aa749 193OBJS += frontend/libpicofe/in_sdl.o
194OBJS += frontend/libpicofe/plat_sdl.o
cc56203b 195OBJS += frontend/libpicofe/plat_dummy.o
196OBJS += frontend/libpicofe/linux/in_evdev.o
5b9aa749 197OBJS += frontend/plat_sdl.o
198ifeq "$(HAVE_GLES)" "1"
2c616080 199OBJS += frontend/libpicofe/gl.o frontend/libpicofe/gl_platform.o
5b9aa749 200LDLIBS += $(LDLIBS_GLES)
201frontend/libpicofe/plat_sdl.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES)
2c616080 202frontend/libpicofe/gl_platform.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES)
5b9aa749 203frontend/libpicofe/gl.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES)
204frontend/plat_sdl.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES)
205endif
cc56203b 206USE_PLUGIN_LIB = 1
38c2028e 207USE_FRONTEND = 1
4132e8ca 208endif
55b0eeea 209ifeq "$(PLATFORM)" "pandora"
cc56203b 210OBJS += frontend/libpicofe/pandora/plat.o
211OBJS += frontend/libpicofe/linux/fbdev.o frontend/libpicofe/linux/xenv.o
212OBJS += frontend/libpicofe/linux/in_evdev.o
213OBJS += frontend/plat_pandora.o frontend/plat_omap.o
da710571 214frontend/main.o frontend/menu.o: CFLAGS += -include frontend/pandora/ui_feat.h
3aba4185 215frontend/libpicofe/linux/plat.o: CFLAGS += -DPANDORA
cc56203b 216USE_PLUGIN_LIB = 1
38c2028e 217USE_FRONTEND = 1
4132e8ca 218endif
55b0eeea 219ifeq "$(PLATFORM)" "caanoo"
cc56203b 220OBJS += frontend/libpicofe/gp2x/in_gp2x.o frontend/warm/warm.o
221OBJS += frontend/libpicofe/gp2x/soc_pollux.o
222OBJS += frontend/libpicofe/linux/in_evdev.o
faf2b2aa 223OBJS += frontend/plat_pollux.o frontend/in_tsbutton.o frontend/blit320.o
da710571 224frontend/main.o frontend/menu.o: CFLAGS += -include frontend/320240/ui_gp2x.h
cc56203b 225USE_PLUGIN_LIB = 1
38c2028e 226USE_FRONTEND = 1
227endif
228ifeq "$(PLATFORM)" "maemo"
baaef67b 229OBJS += maemo/hildon.o maemo/main.o maemo/maemo_xkb.o frontend/pl_gun_ts.o
38c2028e 230maemo/%.o: maemo/%.c
cc56203b 231USE_PLUGIN_LIB = 1
a76fd953 232LDFLAGS += $(shell pkg-config --libs hildon-1 libpulse)
7010034e 233CFLAGS += $(shell pkg-config --cflags hildon-1) -DHAVE_TSLIB
a76fd953
PI
234CFLAGS += `pkg-config --cflags glib-2.0 libosso dbus-1 hildon-fm-2`
235LDFLAGS += `pkg-config --libs glib-2.0 libosso dbus-1 hildon-fm-2`
38c2028e 236endif
237ifeq "$(PLATFORM)" "libretro"
238OBJS += frontend/libretro.o
46aa5b98 239CFLAGS += -DFRONTEND_SUPPORTS_RGB565
ce0e7ac9 240
241ifeq ($(MMAP_WIN32),1)
242OBJS += libpcsxcore/memmap_win32.o
243endif
38c2028e 244endif
cc56203b 245
246ifeq "$(USE_PLUGIN_LIB)" "1"
38c2028e 247OBJS += frontend/plugin_lib.o
cc56203b 248OBJS += frontend/libpicofe/linux/plat.o
249OBJS += frontend/libpicofe/readpng.o frontend/libpicofe/fonts.o
a4da039c 250frontend/libpicofe/linux/plat.o: CFLAGS += -DNO_HOME_DIR
57467c77 251ifeq "$(HAVE_NEON_ASM)" "1"
cc56203b 252OBJS += frontend/libpicofe/arm/neon_scale2x.o
253OBJS += frontend/libpicofe/arm/neon_eagle2x.o
254frontend/libpicofe/arm/neon_scale2x.o: CFLAGS += -DDO_BGR_TO_RGB
255frontend/libpicofe/arm/neon_eagle2x.o: CFLAGS += -DDO_BGR_TO_RGB
256endif
257endif
258ifeq "$(USE_FRONTEND)" "1"
259OBJS += frontend/menu.o
260OBJS += frontend/libpicofe/input.o
261frontend/menu.o: frontend/libpicofe/menu.c
38c2028e 262ifeq "$(HAVE_TSLIB)" "1"
263frontend/%.o: CFLAGS += -DHAVE_TSLIB
264OBJS += frontend/pl_gun_ts.o
265endif
266else
267CFLAGS += -DNO_FRONTEND
55b0eeea 268endif
a80ae4a0 269
cc56203b 270# misc
271OBJS += frontend/main.o frontend/plugin.o
272
e0aec5ee 273
a1a232ad 274frontend/menu.o frontend/main.o: frontend/revision.h
275frontend/plat_sdl.o frontend/libretro.o: frontend/revision.h
3c70c47b 276
cc56203b 277frontend/libpicofe/%.c:
fa56d360 278 @echo "libpicofe module is missing, please run:"
279 @echo "git submodule init && git submodule update"
280 @exit 1
281
59774ed0 282libpcsxcore/gte_nf.o: libpcsxcore/gte.c
283 $(CC) -c -o $@ $^ $(CFLAGS) -DFLAGLESS
284
3c70c47b 285frontend/revision.h: FORCE
4527b1fd 286 @(git describe --always || echo) | sed -e 's/.*/#define REV "\0"/' > $@_
3c70c47b 287 @diff -q $@_ $@ > /dev/null 2>&1 || cp $@_ $@
288 @rm $@_
3c70c47b 289
90ca4913 290%.o: %.S
9aff1963 291 $(CC_AS) $(CFLAGS) -c $^ -o $@
80c2304e 292
e0aec5ee 293
38c2028e 294target_: $(TARGET)
295
80c2304e 296$(TARGET): $(OBJS)
9aff1963 297 $(CC_LINK) -o $@ $^ $(LDFLAGS) $(LDLIBS) $(EXTRA_LDFLAGS)
80c2304e 298
dd4d5a35 299clean: $(PLAT_CLEAN) clean_plugins
a1a232ad 300 $(RM) $(TARGET) $(OBJS) $(TARGET).map frontend/revision.h
0d464c77 301
4132e8ca 302ifneq ($(PLUGINS),)
dd4d5a35 303plugins_: $(PLUGINS)
304
ee78346e 305$(PLUGINS):
306 make -C $(dir $@)
f932e54b 307
ee78346e 308clean_plugins:
ea1f6f2f 309 make -C plugins/gpulib/ clean
ee78346e 310 for dir in $(PLUGINS) ; do \
311 $(MAKE) -C $$(dirname $$dir) clean; done
dd4d5a35 312else
313plugins_:
314clean_plugins:
4132e8ca 315endif
80c2304e 316
fa56d360 317.PHONY: all clean target_ plugins_ clean_plugins FORCE
318
857275a9 319ifneq "$(PLATFORM)" "pandora"
320ifdef CPATH
321$(warning warning: CPATH is defined)
322endif
323endif
324
303ee308 325# ----------- release -----------
326
4527b1fd 327VER ?= $(shell git describe --always HEAD)
4132e8ca 328
dd4d5a35 329ifeq "$(PLATFORM)" "generic"
330OUT = pcsx_rearmed_$(VER)
331
332rel: pcsx $(PLUGINS) \
333 frontend/pandora/skin readme.txt COPYING
334 rm -rf $(OUT)
335 mkdir -p $(OUT)/plugins
336 mkdir -p $(OUT)/bios
337 cp -r $^ $(OUT)/
338 mv $(OUT)/*.so* $(OUT)/plugins/
339 zip -9 -r $(OUT).zip $(OUT)
340endif
341
4132e8ca 342ifeq "$(PLATFORM)" "pandora"
303ee308 343PND_MAKE ?= $(HOME)/dev/pnd/src/pandora-libraries/testdata/scripts/pnd_make.sh
344
8886a808 345rel: pcsx plugins/dfsound/pcsxr_spu_area3.out $(PLUGINS) \
9e0630ab 346 frontend/pandora/pcsx.sh frontend/pandora/pcsx.pxml.templ frontend/pandora/pcsx.png \
347 frontend/pandora/picorestore frontend/pandora/skin readme.txt COPYING
303ee308 348 rm -rf out
bbd837c6 349 mkdir -p out/plugins
303ee308 350 cp -r $^ out/
3938f69a 351 sed -e 's/%PR%/$(VER)/g' out/pcsx.pxml.templ > out/pcsx.pxml
352 rm out/pcsx.pxml.templ
bbd837c6 353 mv out/*.so out/plugins/
9e0630ab 354 $(PND_MAKE) -p pcsx_rearmed_$(VER).pnd -d out -x out/pcsx.pxml -i frontend/pandora/pcsx.png -c
4132e8ca 355endif
356
357ifeq "$(PLATFORM)" "caanoo"
358PLAT_CLEAN = caanoo_clean
359
360caanoo_clean:
361 $(RM) frontend/320240/pollux_set
362
4132e8ca 363rel: pcsx $(PLUGINS) \
364 frontend/320240/caanoo.gpe frontend/320240/pcsx26.png \
365 frontend/320240/pcsxb.png frontend/320240/skin \
366 frontend/warm/bin/warm_2.6.24.ko frontend/320240/pollux_set \
367 frontend/320240/pcsx_rearmed.ini frontend/320240/haptic_w.cfg \
368 frontend/320240/haptic_s.cfg \
369 readme.txt COPYING
370 rm -rf out
371 mkdir -p out/pcsx_rearmed/plugins
372 cp -r $^ out/pcsx_rearmed/
4132e8ca 373 mv out/pcsx_rearmed/*.so out/pcsx_rearmed/plugins/
374 mv out/pcsx_rearmed/caanoo.gpe out/pcsx_rearmed/pcsx.gpe
375 mv out/pcsx_rearmed/pcsx_rearmed.ini out/
376 mkdir out/pcsx_rearmed/lib/
377 cp ./lib/libbz2.so.1 out/pcsx_rearmed/lib/
378 mkdir out/pcsx_rearmed/bios/
379 cd out && zip -9 -r ../pcsx_rearmed_$(VER)_caanoo.zip *
380endif