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