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