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