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