bigendian again
[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 \
80c2304e 50 libpcsxcore/psxhw.o libpcsxcore/psxinterpreter.o libpcsxcore/psxmem.o libpcsxcore/r3000a.o \
abf09485 51 libpcsxcore/sio.o libpcsxcore/spu.o libpcsxcore/gpu.o
59774ed0 52OBJS += libpcsxcore/gte.o libpcsxcore/gte_nf.o libpcsxcore/gte_divider.o
7d7672a5 53#OBJS += libpcsxcore/debug.o libpcsxcore/socket.o libpcsxcore/disr3000a.o
59774ed0 54ifeq "$(ARCH)" "arm"
55OBJS += libpcsxcore/gte_arm.o
56endif
57467c77 57ifeq "$(HAVE_NEON_ASM)" "1"
8cfbda97 58OBJS += libpcsxcore/gte_neon.o
59endif
305c8c93 60libpcsxcore/psxbios.o: CFLAGS += -Wno-nonnull
ab948f7e 61
f95a77f7 62# dynarec
4132e8ca 63ifeq "$(USE_DYNAREC)" "1"
be516ebe 64OBJS += libpcsxcore/new_dynarec/new_dynarec.o
7e605697 65OBJS += libpcsxcore/new_dynarec/pcsxmem.o
be516ebe 66 ifeq "$(ARCH)" "arm"
67 OBJS += libpcsxcore/new_dynarec/linkage_arm.o
687b4580 68 libpcsxcore/new_dynarec/new_dynarec.o: libpcsxcore/new_dynarec/assem_arm.c
57467c77 69 else ifneq (,$(findstring $(ARCH),aarch64 arm64))
be516ebe 70 OBJS += libpcsxcore/new_dynarec/linkage_arm64.o
687b4580 71 libpcsxcore/new_dynarec/new_dynarec.o: libpcsxcore/new_dynarec/assem_arm64.c
be516ebe 72 else
73 $(error no dynarec support for architecture $(ARCH))
74 endif
448bbcae 75else
41e82ad4 76CFLAGS += -DDRC_DISABLE
7139f3c8 77endif
6d75addf 78OBJS += libpcsxcore/new_dynarec/emu_if.o libpcsxcore/new_dynarec/events.o
687b4580 79libpcsxcore/new_dynarec/new_dynarec.o: libpcsxcore/new_dynarec/pcsxmem_inline.c
3eb78778 80ifdef DRC_DBG
81libpcsxcore/new_dynarec/emu_if.o: CFLAGS += -D_FILE_OFFSET_BITS=64
82CFLAGS += -DDRC_DBG
83endif
2a014d73 84ifeq "$(BASE_ADDR_DYNAMIC)" "1"
85libpcsxcore/new_dynarec/%.o: CFLAGS += -DBASE_ADDR_DYNAMIC=1
a327ad27 86endif
f95a77f7 87
e906c010 88# spu
ee849648 89OBJS += plugins/dfsound/dma.o plugins/dfsound/freeze.o \
07c13dfd 90 plugins/dfsound/registers.o plugins/dfsound/spu.o \
91 plugins/dfsound/out.o plugins/dfsound/nullsnd.o
6d866bb7 92plugins/dfsound/spu.o: plugins/dfsound/adsr.c plugins/dfsound/reverb.c \
93 plugins/dfsound/xa.c
3a721c1f 94ifeq "$(ARCH)" "arm"
b17618c0 95OBJS += plugins/dfsound/arm_utils.o
96endif
5514a050 97ifeq "$(HAVE_C64_TOOLS)" "1"
98plugins/dfsound/spu.o: CFLAGS += -DC64X_DSP
99plugins/dfsound/spu.o: plugins/dfsound/spu_c64x.c
8886a808 100frontend/menu.o: CFLAGS += -DC64X_DSP
5514a050 101endif
07c13dfd 102ifneq ($(findstring oss,$(SOUND_DRIVERS)),)
103plugins/dfsound/out.o: CFLAGS += -DHAVE_OSS
de38f20e 104OBJS += plugins/dfsound/oss.o
105endif
07c13dfd 106ifneq ($(findstring alsa,$(SOUND_DRIVERS)),)
107plugins/dfsound/out.o: CFLAGS += -DHAVE_ALSA
de38f20e 108OBJS += plugins/dfsound/alsa.o
4132e8ca 109LDLIBS += -lasound
110endif
07c13dfd 111ifneq ($(findstring sdl,$(SOUND_DRIVERS)),)
112plugins/dfsound/out.o: CFLAGS += -DHAVE_SDL
d8a2f79b 113OBJS += plugins/dfsound/sdl.o
114endif
07c13dfd 115ifneq ($(findstring pulseaudio,$(SOUND_DRIVERS)),)
116plugins/dfsound/out.o: CFLAGS += -DHAVE_PULSE
117OBJS += plugins/dfsound/pulseaudio.o
118endif
119ifneq ($(findstring libretro,$(SOUND_DRIVERS)),)
120plugins/dfsound/out.o: CFLAGS += -DHAVE_LIBRETRO
de38f20e 121endif
122
61bc6d40 123# builtin gpu
124OBJS += plugins/gpulib/gpu.o plugins/gpulib/vout_pl.o
61bc6d40 125ifeq "$(BUILTIN_GPU)" "neon"
57467c77 126OBJS += plugins/gpu_neon/psx_gpu_if.o
90ca4913 127plugins/gpu_neon/psx_gpu_if.o: CFLAGS += -DNEON_BUILD -DTEXTURE_CACHE_4BPP -DTEXTURE_CACHE_8BPP
128plugins/gpu_neon/psx_gpu_if.o: plugins/gpu_neon/psx_gpu/*.c
57467c77 129frontend/menu.o frontend/plugin_lib.o: CFLAGS += -DBUILTIN_GPU_NEON
130 ifeq "$(HAVE_NEON_ASM)" "1"
131 OBJS += plugins/gpu_neon/psx_gpu/psx_gpu_arm_neon.o
132 else
133 OBJS += plugins/gpu_neon/psx_gpu/psx_gpu_simd.o
134 plugins/gpu_neon/psx_gpu_if.o: CFLAGS += -DSIMD_BUILD
135 plugins/gpu_neon/psx_gpu/psx_gpu_simd.o: CFLAGS += -DSIMD_BUILD
136 endif
61bc6d40 137endif
138ifeq "$(BUILTIN_GPU)" "peops"
2ef486ee 139# note: code is not safe for strict-aliasing? (Castlevania problems)
62d7fa95 140plugins/dfxvideo/gpulib_if.o: CFLAGS += -fno-strict-aliasing
141plugins/dfxvideo/gpulib_if.o: plugins/dfxvideo/prim.c plugins/dfxvideo/soft.c
142OBJS += plugins/dfxvideo/gpulib_if.o
90ca4913 143endif
61bc6d40 144ifeq "$(BUILTIN_GPU)" "unai"
61bc6d40 145OBJS += plugins/gpu_unai/gpulib_if.o
146ifeq "$(ARCH)" "arm"
147OBJS += plugins/gpu_unai/gpu_arm.o
148endif
46aa5b98 149plugins/gpu_unai/gpulib_if.o: CFLAGS += -DREARMED -O3
61bc6d40 150CC_LINK = $(CXX)
b60f2812 151endif
e0c692d9 152
0bfe8d59 153ifeq "$(BUILTIN_GPU)" "senquack"
154OBJS += plugins/gpu_senquack/gpulib_if.o
155ifeq "$(ARCH)" "arm"
156OBJS += plugins/gpu_senquack/gpu_arm.o
157endif
158plugins/gpu_senquack/gpulib_if.o: CFLAGS += -DREARMED -O3
159CC_LINK = $(CXX)
160endif
161
47bf65ab 162# cdrcimg
47bf65ab 163OBJS += plugins/cdrcimg/cdrcimg.o
68e7d409 164#ifeq "$(CHD_SUPPORT)" "1"
00f0670c 165OBJS += libchdr/src/libchdr_bitstream.o
166OBJS += libchdr/src/libchdr_cdrom.o
167OBJS += libchdr/src/libchdr_chd.o
168OBJS += libchdr/src/libchdr_flac.o
169OBJS += libchdr/src/libchdr_huffman.o
170OBJS += 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
171OBJS += 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 172CFLAGS += -DHAVE_CHD -Ilibchdr/include
173libpcsxcore/cdriso.o: CFLAGS += -Wno-unused-function
27f734f9 174libchdr/src/%.o: CFLAGS += -Wno-unused -Ilibchdr/deps/lzma-19.00/include -std=gnu11
68e7d409 175libchdr/deps/lzma-19.00/src/%.o: CFLAGS += -Wno-unused -D_7ZIP_ST -Ilibchdr/deps/lzma-19.00/include
176#endif
e906c010 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
0d87d062 270frontend/main.o: CFLAGS += -DBUILTIN_GPU=$(BUILTIN_GPU)
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