psxbios: maybe more accurate malloc
[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
9165d434 9CFLAGS += -DP_HAVE_MMAP=$(if $(NO_MMAP),0,1) \
10 -DP_HAVE_PTHREAD=$(if $(NO_PTHREAD),0,1) \
11 -DP_HAVE_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
27f734f9 173libchdr/src/%.o: CFLAGS += -Wno-unused -Ilibchdr/deps/lzma-19.00/include -std=gnu11
68e7d409 174libchdr/deps/lzma-19.00/src/%.o: CFLAGS += -Wno-unused -D_7ZIP_ST -Ilibchdr/deps/lzma-19.00/include
175#endif
e906c010 176
cc56203b 177# frontend/gui
c82f907a 178OBJS += frontend/cspace.o
57467c77 179ifeq "$(HAVE_NEON_ASM)" "1"
c82f907a 180OBJS += frontend/cspace_neon.o
57467c77 181frontend/cspace.o: CFLAGS += -DHAVE_bgr555_to_rgb565 -DHAVE_bgr888_to_x
d57557c0 182else
183ifeq "$(ARCH)" "arm"
184OBJS += frontend/cspace_arm.o
57467c77 185frontend/cspace.o: CFLAGS += -DHAVE_bgr555_to_rgb565
d57557c0 186endif
c82f907a 187endif
188
4132e8ca 189ifeq "$(PLATFORM)" "generic"
5b9aa749 190OBJS += frontend/libpicofe/in_sdl.o
191OBJS += frontend/libpicofe/plat_sdl.o
cc56203b 192OBJS += frontend/libpicofe/plat_dummy.o
193OBJS += frontend/libpicofe/linux/in_evdev.o
5b9aa749 194OBJS += frontend/plat_sdl.o
195ifeq "$(HAVE_GLES)" "1"
2c616080 196OBJS += frontend/libpicofe/gl.o frontend/libpicofe/gl_platform.o
5b9aa749 197LDLIBS += $(LDLIBS_GLES)
198frontend/libpicofe/plat_sdl.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES)
2c616080 199frontend/libpicofe/gl_platform.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES)
5b9aa749 200frontend/libpicofe/gl.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES)
201frontend/plat_sdl.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES)
202endif
cc56203b 203USE_PLUGIN_LIB = 1
38c2028e 204USE_FRONTEND = 1
4132e8ca 205endif
55b0eeea 206ifeq "$(PLATFORM)" "pandora"
cc56203b 207OBJS += frontend/libpicofe/pandora/plat.o
208OBJS += frontend/libpicofe/linux/fbdev.o frontend/libpicofe/linux/xenv.o
209OBJS += frontend/libpicofe/linux/in_evdev.o
210OBJS += frontend/plat_pandora.o frontend/plat_omap.o
da710571 211frontend/main.o frontend/menu.o: CFLAGS += -include frontend/pandora/ui_feat.h
3aba4185 212frontend/libpicofe/linux/plat.o: CFLAGS += -DPANDORA
cc56203b 213USE_PLUGIN_LIB = 1
38c2028e 214USE_FRONTEND = 1
4132e8ca 215endif
55b0eeea 216ifeq "$(PLATFORM)" "caanoo"
cc56203b 217OBJS += frontend/libpicofe/gp2x/in_gp2x.o frontend/warm/warm.o
218OBJS += frontend/libpicofe/gp2x/soc_pollux.o
219OBJS += frontend/libpicofe/linux/in_evdev.o
faf2b2aa 220OBJS += frontend/plat_pollux.o frontend/in_tsbutton.o frontend/blit320.o
da710571 221frontend/main.o frontend/menu.o: CFLAGS += -include frontend/320240/ui_gp2x.h
cc56203b 222USE_PLUGIN_LIB = 1
38c2028e 223USE_FRONTEND = 1
224endif
225ifeq "$(PLATFORM)" "maemo"
baaef67b 226OBJS += maemo/hildon.o maemo/main.o maemo/maemo_xkb.o frontend/pl_gun_ts.o
38c2028e 227maemo/%.o: maemo/%.c
cc56203b 228USE_PLUGIN_LIB = 1
a76fd953 229LDFLAGS += $(shell pkg-config --libs hildon-1 libpulse)
7010034e 230CFLAGS += $(shell pkg-config --cflags hildon-1) -DHAVE_TSLIB
a76fd953
PI
231CFLAGS += `pkg-config --cflags glib-2.0 libosso dbus-1 hildon-fm-2`
232LDFLAGS += `pkg-config --libs glib-2.0 libosso dbus-1 hildon-fm-2`
38c2028e 233endif
234ifeq "$(PLATFORM)" "libretro"
235OBJS += frontend/libretro.o
46aa5b98 236CFLAGS += -DFRONTEND_SUPPORTS_RGB565
ce0e7ac9 237
238ifeq ($(MMAP_WIN32),1)
239OBJS += libpcsxcore/memmap_win32.o
240endif
38c2028e 241endif
cc56203b 242
243ifeq "$(USE_PLUGIN_LIB)" "1"
38c2028e 244OBJS += frontend/plugin_lib.o
cc56203b 245OBJS += frontend/libpicofe/linux/plat.o
246OBJS += frontend/libpicofe/readpng.o frontend/libpicofe/fonts.o
a4da039c 247frontend/libpicofe/linux/plat.o: CFLAGS += -DNO_HOME_DIR
57467c77 248ifeq "$(HAVE_NEON_ASM)" "1"
cc56203b 249OBJS += frontend/libpicofe/arm/neon_scale2x.o
250OBJS += frontend/libpicofe/arm/neon_eagle2x.o
251frontend/libpicofe/arm/neon_scale2x.o: CFLAGS += -DDO_BGR_TO_RGB
252frontend/libpicofe/arm/neon_eagle2x.o: CFLAGS += -DDO_BGR_TO_RGB
253endif
254endif
255ifeq "$(USE_FRONTEND)" "1"
256OBJS += frontend/menu.o
257OBJS += frontend/libpicofe/input.o
258frontend/menu.o: frontend/libpicofe/menu.c
38c2028e 259ifeq "$(HAVE_TSLIB)" "1"
260frontend/%.o: CFLAGS += -DHAVE_TSLIB
261OBJS += frontend/pl_gun_ts.o
262endif
263else
264CFLAGS += -DNO_FRONTEND
55b0eeea 265endif
a80ae4a0 266
cc56203b 267# misc
268OBJS += frontend/main.o frontend/plugin.o
269
e0aec5ee 270
a1a232ad 271frontend/menu.o frontend/main.o: frontend/revision.h
272frontend/plat_sdl.o frontend/libretro.o: frontend/revision.h
3c70c47b 273
cc56203b 274frontend/libpicofe/%.c:
fa56d360 275 @echo "libpicofe module is missing, please run:"
276 @echo "git submodule init && git submodule update"
277 @exit 1
278
59774ed0 279libpcsxcore/gte_nf.o: libpcsxcore/gte.c
280 $(CC) -c -o $@ $^ $(CFLAGS) -DFLAGLESS
281
3c70c47b 282frontend/revision.h: FORCE
4527b1fd 283 @(git describe --always || echo) | sed -e 's/.*/#define REV "\0"/' > $@_
3c70c47b 284 @diff -q $@_ $@ > /dev/null 2>&1 || cp $@_ $@
285 @rm $@_
3c70c47b 286
90ca4913 287%.o: %.S
9aff1963 288 $(CC_AS) $(CFLAGS) -c $^ -o $@
80c2304e 289
e0aec5ee 290
38c2028e 291target_: $(TARGET)
292
80c2304e 293$(TARGET): $(OBJS)
9aff1963 294 $(CC_LINK) -o $@ $^ $(LDFLAGS) $(LDLIBS) $(EXTRA_LDFLAGS)
80c2304e 295
dd4d5a35 296clean: $(PLAT_CLEAN) clean_plugins
a1a232ad 297 $(RM) $(TARGET) $(OBJS) $(TARGET).map frontend/revision.h
0d464c77 298
4132e8ca 299ifneq ($(PLUGINS),)
dd4d5a35 300plugins_: $(PLUGINS)
301
ee78346e 302$(PLUGINS):
303 make -C $(dir $@)
f932e54b 304
ee78346e 305clean_plugins:
ea1f6f2f 306 make -C plugins/gpulib/ clean
ee78346e 307 for dir in $(PLUGINS) ; do \
308 $(MAKE) -C $$(dirname $$dir) clean; done
dd4d5a35 309else
310plugins_:
311clean_plugins:
4132e8ca 312endif
80c2304e 313
fa56d360 314.PHONY: all clean target_ plugins_ clean_plugins FORCE
315
857275a9 316ifneq "$(PLATFORM)" "pandora"
317ifdef CPATH
318$(warning warning: CPATH is defined)
319endif
320endif
321
303ee308 322# ----------- release -----------
323
4527b1fd 324VER ?= $(shell git describe --always HEAD)
4132e8ca 325
dd4d5a35 326ifeq "$(PLATFORM)" "generic"
327OUT = pcsx_rearmed_$(VER)
328
329rel: pcsx $(PLUGINS) \
330 frontend/pandora/skin readme.txt COPYING
331 rm -rf $(OUT)
332 mkdir -p $(OUT)/plugins
333 mkdir -p $(OUT)/bios
334 cp -r $^ $(OUT)/
335 mv $(OUT)/*.so* $(OUT)/plugins/
336 zip -9 -r $(OUT).zip $(OUT)
337endif
338
4132e8ca 339ifeq "$(PLATFORM)" "pandora"
303ee308 340PND_MAKE ?= $(HOME)/dev/pnd/src/pandora-libraries/testdata/scripts/pnd_make.sh
341
8886a808 342rel: pcsx plugins/dfsound/pcsxr_spu_area3.out $(PLUGINS) \
9e0630ab 343 frontend/pandora/pcsx.sh frontend/pandora/pcsx.pxml.templ frontend/pandora/pcsx.png \
344 frontend/pandora/picorestore frontend/pandora/skin readme.txt COPYING
303ee308 345 rm -rf out
bbd837c6 346 mkdir -p out/plugins
303ee308 347 cp -r $^ out/
3938f69a 348 sed -e 's/%PR%/$(VER)/g' out/pcsx.pxml.templ > out/pcsx.pxml
349 rm out/pcsx.pxml.templ
bbd837c6 350 mv out/*.so out/plugins/
9e0630ab 351 $(PND_MAKE) -p pcsx_rearmed_$(VER).pnd -d out -x out/pcsx.pxml -i frontend/pandora/pcsx.png -c
4132e8ca 352endif
353
354ifeq "$(PLATFORM)" "caanoo"
355PLAT_CLEAN = caanoo_clean
356
357caanoo_clean:
358 $(RM) frontend/320240/pollux_set
359
4132e8ca 360rel: pcsx $(PLUGINS) \
361 frontend/320240/caanoo.gpe frontend/320240/pcsx26.png \
362 frontend/320240/pcsxb.png frontend/320240/skin \
363 frontend/warm/bin/warm_2.6.24.ko frontend/320240/pollux_set \
364 frontend/320240/pcsx_rearmed.ini frontend/320240/haptic_w.cfg \
365 frontend/320240/haptic_s.cfg \
366 readme.txt COPYING
367 rm -rf out
368 mkdir -p out/pcsx_rearmed/plugins
369 cp -r $^ out/pcsx_rearmed/
4132e8ca 370 mv out/pcsx_rearmed/*.so out/pcsx_rearmed/plugins/
371 mv out/pcsx_rearmed/caanoo.gpe out/pcsx_rearmed/pcsx.gpe
372 mv out/pcsx_rearmed/pcsx_rearmed.ini out/
373 mkdir out/pcsx_rearmed/lib/
374 cp ./lib/libbz2.so.1 out/pcsx_rearmed/lib/
375 mkdir out/pcsx_rearmed/bios/
376 cd out && zip -9 -r ../pcsx_rearmed_$(VER)_caanoo.zip *
377endif