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