drc: remove old debug code
[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 libpcsxcore/new_dynarec/linkage_arm.o
60 OBJS += libpcsxcore/new_dynarec/pcsxmem.o
61 else
62 CFLAGS += -DDRC_DISABLE
63 endif
64 OBJS += libpcsxcore/new_dynarec/emu_if.o
65 libpcsxcore/new_dynarec/new_dynarec.o: libpcsxcore/new_dynarec/assem_arm.c \
66         libpcsxcore/new_dynarec/pcsxmem_inline.c
67 ifdef DRC_DBG
68 libpcsxcore/new_dynarec/emu_if.o: CFLAGS += -D_FILE_OFFSET_BITS=64
69 CFLAGS += -DDRC_DBG
70 endif
71 ifeq "$(DRC_CACHE_BASE)" "1"
72 libpcsxcore/new_dynarec/%.o: CFLAGS += -DBASE_ADDR_FIXED=1
73 endif
74
75 # spu
76 OBJS += plugins/dfsound/dma.o plugins/dfsound/freeze.o \
77         plugins/dfsound/registers.o plugins/dfsound/spu.o \
78         plugins/dfsound/out.o plugins/dfsound/nullsnd.o
79 plugins/dfsound/spu.o: plugins/dfsound/adsr.c plugins/dfsound/reverb.c \
80         plugins/dfsound/xa.c
81 ifeq "$(ARCH)" "arm"
82 OBJS += plugins/dfsound/arm_utils.o
83 endif
84 ifeq "$(HAVE_C64_TOOLS)" "1"
85 plugins/dfsound/spu.o: CFLAGS += -DC64X_DSP
86 plugins/dfsound/spu.o: plugins/dfsound/spu_c64x.c
87 frontend/menu.o: CFLAGS += -DC64X_DSP
88 endif
89 ifneq ($(findstring oss,$(SOUND_DRIVERS)),)
90 plugins/dfsound/out.o: CFLAGS += -DHAVE_OSS
91 OBJS += plugins/dfsound/oss.o
92 endif
93 ifneq ($(findstring alsa,$(SOUND_DRIVERS)),)
94 plugins/dfsound/out.o: CFLAGS += -DHAVE_ALSA
95 OBJS += plugins/dfsound/alsa.o
96 LDLIBS += -lasound
97 endif
98 ifneq ($(findstring sdl,$(SOUND_DRIVERS)),)
99 plugins/dfsound/out.o: CFLAGS += -DHAVE_SDL
100 OBJS += plugins/dfsound/sdl.o
101 endif
102 ifneq ($(findstring pulseaudio,$(SOUND_DRIVERS)),)
103 plugins/dfsound/out.o: CFLAGS += -DHAVE_PULSE
104 OBJS += plugins/dfsound/pulseaudio.o
105 endif
106 ifneq ($(findstring libretro,$(SOUND_DRIVERS)),)
107 plugins/dfsound/out.o: CFLAGS += -DHAVE_LIBRETRO
108 endif
109
110 # builtin gpu
111 OBJS += plugins/gpulib/gpu.o plugins/gpulib/vout_pl.o
112 ifeq "$(BUILTIN_GPU)" "neon"
113 OBJS += plugins/gpu_neon/psx_gpu_if.o plugins/gpu_neon/psx_gpu/psx_gpu_arm_neon.o
114 plugins/gpu_neon/psx_gpu_if.o: CFLAGS += -DNEON_BUILD -DTEXTURE_CACHE_4BPP -DTEXTURE_CACHE_8BPP
115 plugins/gpu_neon/psx_gpu_if.o: plugins/gpu_neon/psx_gpu/*.c
116 endif
117 ifeq "$(BUILTIN_GPU)" "peops"
118 # note: code is not safe for strict-aliasing? (Castlevania problems)
119 plugins/dfxvideo/gpulib_if.o: CFLAGS += -fno-strict-aliasing
120 plugins/dfxvideo/gpulib_if.o: plugins/dfxvideo/prim.c plugins/dfxvideo/soft.c
121 OBJS += plugins/dfxvideo/gpulib_if.o
122 endif
123 ifeq "$(BUILTIN_GPU)" "unai"
124 OBJS += plugins/gpu_unai/gpulib_if.o
125 ifeq "$(ARCH)" "arm"
126 OBJS += plugins/gpu_unai/gpu_arm.o
127 endif
128 plugins/gpu_unai/gpulib_if.o: CFLAGS += -DREARMED -O3 
129 CC_LINK = $(CXX)
130 endif
131
132 ifeq "$(BUILTIN_GPU)" "senquack"
133 OBJS += plugins/gpu_senquack/gpulib_if.o
134 ifeq "$(ARCH)" "arm"
135 OBJS += plugins/gpu_senquack/gpu_arm.o
136 endif
137 plugins/gpu_senquack/gpulib_if.o: CFLAGS += -DREARMED -O3 
138 CC_LINK = $(CXX)
139 endif
140
141 # cdrcimg
142 OBJS += plugins/cdrcimg/cdrcimg.o
143 ifeq "$(CHD_SUPPORT)" "1"
144 OBJS += libchdr/src/libchdr_bitstream.o
145 OBJS += libchdr/src/libchdr_cdrom.o
146 OBJS += libchdr/src/libchdr_chd.o
147 OBJS += libchdr/src/libchdr_flac.o
148 OBJS += libchdr/src/libchdr_huffman.o
149 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
150 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
151 CFLAGS += -DHAVE_CHD -D_7ZIP_ST -Ilibchdr/include/libchdr -Ilibchdr/include/dr_libs -Ilibchdr/include -Ilibchdr/deps/lzma-19.00/include
152 endif
153
154 # dfinput
155 OBJS += plugins/dfinput/main.o plugins/dfinput/pad.o plugins/dfinput/guncon.o
156
157 # frontend/gui
158 OBJS += frontend/cspace.o
159 ifeq "$(HAVE_NEON)" "1"
160 OBJS += frontend/cspace_neon.o
161 else
162 ifeq "$(ARCH)" "arm"
163 OBJS += frontend/cspace_arm.o
164 endif
165 endif
166
167 ifeq "$(PLATFORM)" "generic"
168 OBJS += frontend/libpicofe/in_sdl.o
169 OBJS += frontend/libpicofe/plat_sdl.o
170 OBJS += frontend/libpicofe/plat_dummy.o
171 OBJS += frontend/libpicofe/linux/in_evdev.o
172 OBJS += frontend/plat_sdl.o
173 ifeq "$(HAVE_GLES)" "1"
174 OBJS += frontend/libpicofe/gl.o frontend/libpicofe/gl_platform.o
175 LDLIBS += $(LDLIBS_GLES)
176 frontend/libpicofe/plat_sdl.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES)
177 frontend/libpicofe/gl_platform.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES)
178 frontend/libpicofe/gl.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES)
179 frontend/plat_sdl.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES)
180 endif
181 USE_PLUGIN_LIB = 1
182 USE_FRONTEND = 1
183 endif
184 ifeq "$(PLATFORM)" "pandora"
185 OBJS += frontend/libpicofe/pandora/plat.o
186 OBJS += frontend/libpicofe/linux/fbdev.o frontend/libpicofe/linux/xenv.o
187 OBJS += frontend/libpicofe/linux/in_evdev.o
188 OBJS += frontend/plat_pandora.o frontend/plat_omap.o
189 frontend/main.o frontend/menu.o: CFLAGS += -include frontend/pandora/ui_feat.h
190 frontend/libpicofe/linux/plat.o: CFLAGS += -DPANDORA
191 USE_PLUGIN_LIB = 1
192 USE_FRONTEND = 1
193 endif
194 ifeq "$(PLATFORM)" "caanoo"
195 OBJS += frontend/libpicofe/gp2x/in_gp2x.o frontend/warm/warm.o
196 OBJS += frontend/libpicofe/gp2x/soc_pollux.o
197 OBJS += frontend/libpicofe/linux/in_evdev.o
198 OBJS += frontend/plat_pollux.o frontend/in_tsbutton.o frontend/blit320.o
199 frontend/main.o frontend/menu.o: CFLAGS += -include frontend/320240/ui_gp2x.h
200 USE_PLUGIN_LIB = 1
201 USE_FRONTEND = 1
202 endif
203 ifeq "$(PLATFORM)" "maemo"
204 OBJS += maemo/hildon.o maemo/main.o maemo/maemo_xkb.o frontend/pl_gun_ts.o
205 maemo/%.o: maemo/%.c
206 USE_PLUGIN_LIB = 1
207 LDFLAGS += $(shell pkg-config --libs hildon-1 libpulse)
208 CFLAGS += $(shell pkg-config --cflags hildon-1) -DHAVE_TSLIB
209 CFLAGS += `pkg-config --cflags glib-2.0 libosso dbus-1 hildon-fm-2`
210 LDFLAGS += `pkg-config --libs glib-2.0 libosso dbus-1 hildon-fm-2`
211 endif
212 ifeq "$(PLATFORM)" "libretro"
213 OBJS += frontend/libretro.o
214 CFLAGS += -DFRONTEND_SUPPORTS_RGB565
215
216 ifeq ($(MMAP_WIN32),1)
217 OBJS += libpcsxcore/memmap_win32.o
218 endif
219 endif
220
221 ifeq "$(USE_PLUGIN_LIB)" "1"
222 OBJS += frontend/plugin_lib.o
223 OBJS += frontend/libpicofe/linux/plat.o
224 OBJS += frontend/libpicofe/readpng.o frontend/libpicofe/fonts.o
225 frontend/libpicofe/linux/plat.o: CFLAGS += -DNO_HOME_DIR
226 ifeq "$(HAVE_NEON)" "1"
227 OBJS += frontend/libpicofe/arm/neon_scale2x.o
228 OBJS += frontend/libpicofe/arm/neon_eagle2x.o
229 frontend/libpicofe/arm/neon_scale2x.o: CFLAGS += -DDO_BGR_TO_RGB
230 frontend/libpicofe/arm/neon_eagle2x.o: CFLAGS += -DDO_BGR_TO_RGB
231 endif
232 endif
233 ifeq "$(USE_FRONTEND)" "1"
234 OBJS += frontend/menu.o
235 OBJS += frontend/libpicofe/input.o
236 frontend/menu.o: frontend/libpicofe/menu.c
237 ifeq "$(HAVE_TSLIB)" "1"
238 frontend/%.o: CFLAGS += -DHAVE_TSLIB
239 OBJS += frontend/pl_gun_ts.o
240 endif
241 else
242 CFLAGS += -DNO_FRONTEND
243 endif
244
245 # misc
246 OBJS += frontend/main.o frontend/plugin.o
247
248
249 frontend/menu.o frontend/main.o: frontend/revision.h
250 frontend/plat_sdl.o frontend/libretro.o: frontend/revision.h
251
252 frontend/libpicofe/%.c:
253         @echo "libpicofe module is missing, please run:"
254         @echo "git submodule init && git submodule update"
255         @exit 1
256
257 libpcsxcore/gte_nf.o: libpcsxcore/gte.c
258         $(CC) -c -o $@ $^ $(CFLAGS) -DFLAGLESS
259
260 frontend/revision.h: FORCE
261         @(git describe || echo) | sed -e 's/.*/#define REV "\0"/' > $@_
262         @diff -q $@_ $@ > /dev/null 2>&1 || cp $@_ $@
263         @rm $@_
264
265 %.o: %.S
266         $(CC_AS) $(CFLAGS) -c $^ -o $@
267
268
269 target_: $(TARGET)
270
271 $(TARGET): $(OBJS)
272         $(CC_LINK) -o $@ $^ $(LDFLAGS) $(LDLIBS) $(EXTRA_LDFLAGS)
273
274 clean: $(PLAT_CLEAN) clean_plugins
275         $(RM) $(TARGET) $(OBJS) $(TARGET).map frontend/revision.h
276
277 ifneq ($(PLUGINS),)
278 plugins_: $(PLUGINS)
279
280 $(PLUGINS):
281         make -C $(dir $@)
282
283 clean_plugins:
284         make -C plugins/gpulib/ clean
285         for dir in $(PLUGINS) ; do \
286                 $(MAKE) -C $$(dirname $$dir) clean; done
287 else
288 plugins_:
289 clean_plugins:
290 endif
291
292 .PHONY: all clean target_ plugins_ clean_plugins FORCE
293
294 ifneq "$(PLATFORM)" "pandora"
295 ifdef CPATH
296 $(warning warning: CPATH is defined)
297 endif
298 endif
299
300 # ----------- release -----------
301
302 VER ?= $(shell git describe HEAD)
303
304 ifeq "$(PLATFORM)" "generic"
305 OUT = pcsx_rearmed_$(VER)
306
307 rel: pcsx $(PLUGINS) \
308                 frontend/pandora/skin readme.txt COPYING
309         rm -rf $(OUT)
310         mkdir -p $(OUT)/plugins
311         mkdir -p $(OUT)/bios
312         cp -r $^ $(OUT)/
313         mv $(OUT)/*.so* $(OUT)/plugins/
314         zip -9 -r $(OUT).zip $(OUT)
315 endif
316
317 ifeq "$(PLATFORM)" "pandora"
318 PND_MAKE ?= $(HOME)/dev/pnd/src/pandora-libraries/testdata/scripts/pnd_make.sh
319
320 rel: pcsx plugins/dfsound/pcsxr_spu_area3.out $(PLUGINS) \
321                 frontend/pandora/pcsx.sh frontend/pandora/pcsx.pxml.templ frontend/pandora/pcsx.png \
322                 frontend/pandora/picorestore frontend/pandora/skin readme.txt COPYING
323         rm -rf out
324         mkdir -p out/plugins
325         cp -r $^ out/
326         sed -e 's/%PR%/$(VER)/g' out/pcsx.pxml.templ > out/pcsx.pxml
327         rm out/pcsx.pxml.templ
328         mv out/*.so out/plugins/
329         $(PND_MAKE) -p pcsx_rearmed_$(VER).pnd -d out -x out/pcsx.pxml -i frontend/pandora/pcsx.png -c
330 endif
331
332 ifeq "$(PLATFORM)" "caanoo"
333 PLAT_CLEAN = caanoo_clean
334
335 caanoo_clean:
336         $(RM) frontend/320240/pollux_set
337
338 rel: pcsx $(PLUGINS) \
339                 frontend/320240/caanoo.gpe frontend/320240/pcsx26.png \
340                 frontend/320240/pcsxb.png frontend/320240/skin \
341                 frontend/warm/bin/warm_2.6.24.ko frontend/320240/pollux_set \
342                 frontend/320240/pcsx_rearmed.ini frontend/320240/haptic_w.cfg \
343                 frontend/320240/haptic_s.cfg \
344                 readme.txt COPYING
345         rm -rf out
346         mkdir -p out/pcsx_rearmed/plugins
347         cp -r $^ out/pcsx_rearmed/
348         mv out/pcsx_rearmed/*.so out/pcsx_rearmed/plugins/
349         mv out/pcsx_rearmed/caanoo.gpe out/pcsx_rearmed/pcsx.gpe
350         mv out/pcsx_rearmed/pcsx_rearmed.ini out/
351         mkdir out/pcsx_rearmed/lib/
352         cp ./lib/libbz2.so.1 out/pcsx_rearmed/lib/
353         mkdir out/pcsx_rearmed/bios/
354         cd out && zip -9 -r ../pcsx_rearmed_$(VER)_caanoo.zip *
355 endif