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