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