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