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