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