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