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