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