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