Commit | Line | Data |
---|---|---|
4132e8ca | 1 | # Makefile for PCSX ReARMed |
a80ae4a0 | 2 | |
61bc6d40 | 3 | # default stuff goes here, so that config can override |
9aff1963 | 4 | TARGET ?= pcsx |
da710571 | 5 | CFLAGS += -Wall -ggdb -Iinclude -ffast-math |
f95a77f7 | 6 | ifndef DEBUG |
cfbd3c6e | 7 | CFLAGS += -O2 -DNDEBUG |
b60f2812 | 8 | endif |
61bc6d40 | 9 | CXXFLAGS += $(CFLAGS) |
4132e8ca | 10 | #DRC_DBG = 1 |
11 | #PCNT = 1 | |
80c2304e | 12 | |
38c2028e | 13 | all: config.mak target_ plugins_ |
de38f20e | 14 | |
9aff1963 | 15 | ifndef NO_CONFIG_MAK |
4132e8ca | 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 | |
9aff1963 | 26 | else # NO_CONFIG_MAK |
27 | config.mak: | |
28 | endif | |
29 | ||
4132e8ca | 30 | -include Makefile.local |
80c2304e | 31 | |
9aff1963 | 32 | CC_LINK ?= $(CC) |
33 | CC_AS ?= $(CC) | |
22fa3f2b | 34 | LDFLAGS += $(MAIN_LDFLAGS) |
9aff1963 | 35 | EXTRA_LDFLAGS ?= -Wl,-Map=$@.map |
07c13dfd | 36 | LDLIBS += $(MAIN_LDLIBS) |
e0aec5ee | 37 | ifdef PCNT |
38 | CFLAGS += -DPCNT | |
39 | endif | |
61bc6d40 | 40 | |
80c2304e | 41 | # core |
42 | OBJS += libpcsxcore/cdriso.o libpcsxcore/cdrom.o libpcsxcore/cheat.o libpcsxcore/debug.o \ | |
3ebefe71 | 43 | libpcsxcore/decode_xa.o libpcsxcore/disr3000a.o libpcsxcore/mdec.o \ |
80c2304e | 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 | |
59774ed0 | 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 | |
a80ae4a0 | 52 | ifeq "$(HAVE_NEON)" "1" |
8cfbda97 | 53 | OBJS += libpcsxcore/gte_neon.o |
54 | endif | |
305c8c93 | 55 | libpcsxcore/psxbios.o: CFLAGS += -Wno-nonnull |
ab948f7e | 56 | |
f95a77f7 | 57 | # dynarec |
4132e8ca | 58 | ifeq "$(USE_DYNAREC)" "1" |
7139f3c8 | 59 | OBJS += libpcsxcore/new_dynarec/new_dynarec.o libpcsxcore/new_dynarec/linkage_arm.o |
7e605697 | 60 | OBJS += libpcsxcore/new_dynarec/pcsxmem.o |
448bbcae | 61 | else |
62 | libpcsxcore/new_dynarec/emu_if.o: CFLAGS += -DDRC_DISABLE | |
48f615ba | 63 | frontend/libretro.o: CFLAGS += -DDRC_DISABLE |
7139f3c8 | 64 | endif |
65 | OBJS += libpcsxcore/new_dynarec/emu_if.o | |
b1be1eee | 66 | libpcsxcore/new_dynarec/new_dynarec.o: libpcsxcore/new_dynarec/assem_arm.c \ |
67 | libpcsxcore/new_dynarec/pcsxmem_inline.c | |
3eb78778 | 68 | ifdef DRC_DBG |
69 | libpcsxcore/new_dynarec/emu_if.o: CFLAGS += -D_FILE_OFFSET_BITS=64 | |
70 | CFLAGS += -DDRC_DBG | |
71 | endif | |
4132e8ca | 72 | ifeq "$(DRC_CACHE_BASE)" "1" |
73 | libpcsxcore/new_dynarec/%.o: CFLAGS += -DBASE_ADDR_FIXED=1 | |
a327ad27 | 74 | endif |
f95a77f7 | 75 | |
e906c010 | 76 | # spu |
ee849648 | 77 | OBJS += plugins/dfsound/dma.o plugins/dfsound/freeze.o \ |
07c13dfd | 78 | plugins/dfsound/registers.o plugins/dfsound/spu.o \ |
79 | plugins/dfsound/out.o plugins/dfsound/nullsnd.o | |
6d866bb7 | 80 | plugins/dfsound/spu.o: plugins/dfsound/adsr.c plugins/dfsound/reverb.c \ |
81 | plugins/dfsound/xa.c | |
3a721c1f | 82 | ifeq "$(ARCH)" "arm" |
b17618c0 | 83 | OBJS += plugins/dfsound/arm_utils.o |
84 | endif | |
5514a050 | 85 | ifeq "$(HAVE_C64_TOOLS)" "1" |
86 | plugins/dfsound/spu.o: CFLAGS += -DC64X_DSP | |
87 | plugins/dfsound/spu.o: plugins/dfsound/spu_c64x.c | |
8886a808 | 88 | frontend/menu.o: CFLAGS += -DC64X_DSP |
5514a050 | 89 | endif |
07c13dfd | 90 | ifneq ($(findstring oss,$(SOUND_DRIVERS)),) |
91 | plugins/dfsound/out.o: CFLAGS += -DHAVE_OSS | |
de38f20e | 92 | OBJS += plugins/dfsound/oss.o |
93 | endif | |
07c13dfd | 94 | ifneq ($(findstring alsa,$(SOUND_DRIVERS)),) |
95 | plugins/dfsound/out.o: CFLAGS += -DHAVE_ALSA | |
de38f20e | 96 | OBJS += plugins/dfsound/alsa.o |
4132e8ca | 97 | LDLIBS += -lasound |
98 | endif | |
07c13dfd | 99 | ifneq ($(findstring sdl,$(SOUND_DRIVERS)),) |
100 | plugins/dfsound/out.o: CFLAGS += -DHAVE_SDL | |
d8a2f79b | 101 | OBJS += plugins/dfsound/sdl.o |
102 | endif | |
07c13dfd | 103 | ifneq ($(findstring pulseaudio,$(SOUND_DRIVERS)),) |
104 | plugins/dfsound/out.o: CFLAGS += -DHAVE_PULSE | |
105 | OBJS += plugins/dfsound/pulseaudio.o | |
106 | endif | |
107 | ifneq ($(findstring libretro,$(SOUND_DRIVERS)),) | |
108 | plugins/dfsound/out.o: CFLAGS += -DHAVE_LIBRETRO | |
de38f20e | 109 | endif |
110 | ||
61bc6d40 | 111 | # builtin gpu |
112 | OBJS += plugins/gpulib/gpu.o plugins/gpulib/vout_pl.o | |
61bc6d40 | 113 | ifeq "$(BUILTIN_GPU)" "neon" |
90ca4913 | 114 | OBJS += plugins/gpu_neon/psx_gpu_if.o plugins/gpu_neon/psx_gpu/psx_gpu_arm_neon.o |
115 | plugins/gpu_neon/psx_gpu_if.o: CFLAGS += -DNEON_BUILD -DTEXTURE_CACHE_4BPP -DTEXTURE_CACHE_8BPP | |
116 | plugins/gpu_neon/psx_gpu_if.o: plugins/gpu_neon/psx_gpu/*.c | |
61bc6d40 | 117 | endif |
118 | ifeq "$(BUILTIN_GPU)" "peops" | |
2ef486ee | 119 | # note: code is not safe for strict-aliasing? (Castlevania problems) |
62d7fa95 | 120 | plugins/dfxvideo/gpulib_if.o: CFLAGS += -fno-strict-aliasing |
121 | plugins/dfxvideo/gpulib_if.o: plugins/dfxvideo/prim.c plugins/dfxvideo/soft.c | |
122 | OBJS += plugins/dfxvideo/gpulib_if.o | |
90ca4913 | 123 | endif |
61bc6d40 | 124 | ifeq "$(BUILTIN_GPU)" "unai" |
61bc6d40 | 125 | OBJS += plugins/gpu_unai/gpulib_if.o |
126 | ifeq "$(ARCH)" "arm" | |
127 | OBJS += plugins/gpu_unai/gpu_arm.o | |
128 | endif | |
46aa5b98 | 129 | plugins/gpu_unai/gpulib_if.o: CFLAGS += -DREARMED -O3 |
61bc6d40 | 130 | CC_LINK = $(CXX) |
b60f2812 | 131 | endif |
e0c692d9 | 132 | |
47bf65ab | 133 | # cdrcimg |
47bf65ab | 134 | OBJS += plugins/cdrcimg/cdrcimg.o |
e906c010 | 135 | |
384f5f43 | 136 | # dfinput |
4c08b9e7 | 137 | OBJS += plugins/dfinput/main.o plugins/dfinput/pad.o plugins/dfinput/guncon.o |
384f5f43 | 138 | |
cc56203b | 139 | # frontend/gui |
c82f907a | 140 | OBJS += frontend/cspace.o |
141 | ifeq "$(HAVE_NEON)" "1" | |
142 | OBJS += frontend/cspace_neon.o | |
d57557c0 | 143 | else |
144 | ifeq "$(ARCH)" "arm" | |
145 | OBJS += frontend/cspace_arm.o | |
146 | endif | |
c82f907a | 147 | endif |
148 | ||
4132e8ca | 149 | ifeq "$(PLATFORM)" "generic" |
5b9aa749 | 150 | OBJS += frontend/libpicofe/in_sdl.o |
151 | OBJS += frontend/libpicofe/plat_sdl.o | |
cc56203b | 152 | OBJS += frontend/libpicofe/plat_dummy.o |
153 | OBJS += frontend/libpicofe/linux/in_evdev.o | |
5b9aa749 | 154 | OBJS += frontend/plat_sdl.o |
155 | ifeq "$(HAVE_GLES)" "1" | |
2c616080 | 156 | OBJS += frontend/libpicofe/gl.o frontend/libpicofe/gl_platform.o |
5b9aa749 | 157 | LDLIBS += $(LDLIBS_GLES) |
158 | frontend/libpicofe/plat_sdl.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES) | |
2c616080 | 159 | frontend/libpicofe/gl_platform.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES) |
5b9aa749 | 160 | frontend/libpicofe/gl.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES) |
161 | frontend/plat_sdl.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES) | |
162 | endif | |
cc56203b | 163 | USE_PLUGIN_LIB = 1 |
38c2028e | 164 | USE_FRONTEND = 1 |
4132e8ca | 165 | endif |
55b0eeea | 166 | ifeq "$(PLATFORM)" "pandora" |
cc56203b | 167 | OBJS += frontend/libpicofe/pandora/plat.o |
168 | OBJS += frontend/libpicofe/linux/fbdev.o frontend/libpicofe/linux/xenv.o | |
169 | OBJS += frontend/libpicofe/linux/in_evdev.o | |
170 | OBJS += frontend/plat_pandora.o frontend/plat_omap.o | |
da710571 | 171 | frontend/main.o frontend/menu.o: CFLAGS += -include frontend/pandora/ui_feat.h |
3aba4185 | 172 | frontend/libpicofe/linux/plat.o: CFLAGS += -DPANDORA |
cc56203b | 173 | USE_PLUGIN_LIB = 1 |
38c2028e | 174 | USE_FRONTEND = 1 |
4132e8ca | 175 | endif |
55b0eeea | 176 | ifeq "$(PLATFORM)" "caanoo" |
cc56203b | 177 | OBJS += frontend/libpicofe/gp2x/in_gp2x.o frontend/warm/warm.o |
178 | OBJS += frontend/libpicofe/gp2x/soc_pollux.o | |
179 | OBJS += frontend/libpicofe/linux/in_evdev.o | |
faf2b2aa | 180 | OBJS += frontend/plat_pollux.o frontend/in_tsbutton.o frontend/blit320.o |
da710571 | 181 | frontend/main.o frontend/menu.o: CFLAGS += -include frontend/320240/ui_gp2x.h |
cc56203b | 182 | USE_PLUGIN_LIB = 1 |
38c2028e | 183 | USE_FRONTEND = 1 |
184 | endif | |
185 | ifeq "$(PLATFORM)" "maemo" | |
baaef67b | 186 | OBJS += maemo/hildon.o maemo/main.o maemo/maemo_xkb.o frontend/pl_gun_ts.o |
38c2028e | 187 | maemo/%.o: maemo/%.c |
cc56203b | 188 | USE_PLUGIN_LIB = 1 |
a76fd953 | 189 | LDFLAGS += $(shell pkg-config --libs hildon-1 libpulse) |
7010034e | 190 | CFLAGS += $(shell pkg-config --cflags hildon-1) -DHAVE_TSLIB |
a76fd953 PI |
191 | CFLAGS += `pkg-config --cflags glib-2.0 libosso dbus-1 hildon-fm-2` |
192 | LDFLAGS += `pkg-config --libs glib-2.0 libosso dbus-1 hildon-fm-2` | |
38c2028e | 193 | endif |
194 | ifeq "$(PLATFORM)" "libretro" | |
195 | OBJS += frontend/libretro.o | |
46aa5b98 | 196 | CFLAGS += -DFRONTEND_SUPPORTS_RGB565 |
ce0e7ac9 | 197 | |
198 | ifeq ($(MMAP_WIN32),1) | |
199 | OBJS += libpcsxcore/memmap_win32.o | |
200 | endif | |
38c2028e | 201 | endif |
cc56203b | 202 | |
203 | ifeq "$(USE_PLUGIN_LIB)" "1" | |
38c2028e | 204 | OBJS += frontend/plugin_lib.o |
cc56203b | 205 | OBJS += frontend/libpicofe/linux/plat.o |
206 | OBJS += frontend/libpicofe/readpng.o frontend/libpicofe/fonts.o | |
207 | ifeq "$(HAVE_NEON)" "1" | |
208 | OBJS += frontend/libpicofe/arm/neon_scale2x.o | |
209 | OBJS += frontend/libpicofe/arm/neon_eagle2x.o | |
210 | frontend/libpicofe/arm/neon_scale2x.o: CFLAGS += -DDO_BGR_TO_RGB | |
211 | frontend/libpicofe/arm/neon_eagle2x.o: CFLAGS += -DDO_BGR_TO_RGB | |
212 | endif | |
213 | endif | |
214 | ifeq "$(USE_FRONTEND)" "1" | |
215 | OBJS += frontend/menu.o | |
216 | OBJS += frontend/libpicofe/input.o | |
217 | frontend/menu.o: frontend/libpicofe/menu.c | |
38c2028e | 218 | ifeq "$(HAVE_TSLIB)" "1" |
219 | frontend/%.o: CFLAGS += -DHAVE_TSLIB | |
220 | OBJS += frontend/pl_gun_ts.o | |
221 | endif | |
222 | else | |
223 | CFLAGS += -DNO_FRONTEND | |
55b0eeea | 224 | endif |
a80ae4a0 | 225 | |
cc56203b | 226 | # misc |
227 | OBJS += frontend/main.o frontend/plugin.o | |
228 | ||
e0aec5ee | 229 | |
a1a232ad | 230 | frontend/menu.o frontend/main.o: frontend/revision.h |
231 | frontend/plat_sdl.o frontend/libretro.o: frontend/revision.h | |
3c70c47b | 232 | |
cc56203b | 233 | frontend/libpicofe/%.c: |
fa56d360 | 234 | @echo "libpicofe module is missing, please run:" |
235 | @echo "git submodule init && git submodule update" | |
236 | @exit 1 | |
237 | ||
59774ed0 | 238 | libpcsxcore/gte_nf.o: libpcsxcore/gte.c |
239 | $(CC) -c -o $@ $^ $(CFLAGS) -DFLAGLESS | |
240 | ||
3c70c47b | 241 | frontend/revision.h: FORCE |
242 | @(git describe || echo) | sed -e 's/.*/#define REV "\0"/' > $@_ | |
243 | @diff -q $@_ $@ > /dev/null 2>&1 || cp $@_ $@ | |
244 | @rm $@_ | |
3c70c47b | 245 | |
90ca4913 | 246 | %.o: %.S |
9aff1963 | 247 | $(CC_AS) $(CFLAGS) -c $^ -o $@ |
80c2304e | 248 | |
e0aec5ee | 249 | |
38c2028e | 250 | target_: $(TARGET) |
251 | ||
80c2304e | 252 | $(TARGET): $(OBJS) |
9aff1963 | 253 | $(CC_LINK) -o $@ $^ $(LDFLAGS) $(LDLIBS) $(EXTRA_LDFLAGS) |
80c2304e | 254 | |
dd4d5a35 | 255 | clean: $(PLAT_CLEAN) clean_plugins |
a1a232ad | 256 | $(RM) $(TARGET) $(OBJS) $(TARGET).map frontend/revision.h |
0d464c77 | 257 | |
4132e8ca | 258 | ifneq ($(PLUGINS),) |
dd4d5a35 | 259 | plugins_: $(PLUGINS) |
260 | ||
ee78346e | 261 | $(PLUGINS): |
262 | make -C $(dir $@) | |
f932e54b | 263 | |
ee78346e | 264 | clean_plugins: |
ea1f6f2f | 265 | make -C plugins/gpulib/ clean |
ee78346e | 266 | for dir in $(PLUGINS) ; do \ |
267 | $(MAKE) -C $$(dirname $$dir) clean; done | |
dd4d5a35 | 268 | else |
269 | plugins_: | |
270 | clean_plugins: | |
4132e8ca | 271 | endif |
80c2304e | 272 | |
fa56d360 | 273 | .PHONY: all clean target_ plugins_ clean_plugins FORCE |
274 | ||
303ee308 | 275 | # ----------- release ----------- |
276 | ||
cd5abe38 | 277 | VER ?= $(shell git describe HEAD) |
4132e8ca | 278 | |
dd4d5a35 | 279 | ifeq "$(PLATFORM)" "generic" |
280 | OUT = pcsx_rearmed_$(VER) | |
281 | ||
282 | rel: pcsx $(PLUGINS) \ | |
283 | frontend/pandora/skin readme.txt COPYING | |
284 | rm -rf $(OUT) | |
285 | mkdir -p $(OUT)/plugins | |
286 | mkdir -p $(OUT)/bios | |
287 | cp -r $^ $(OUT)/ | |
288 | mv $(OUT)/*.so* $(OUT)/plugins/ | |
289 | zip -9 -r $(OUT).zip $(OUT) | |
290 | endif | |
291 | ||
4132e8ca | 292 | ifeq "$(PLATFORM)" "pandora" |
303ee308 | 293 | PND_MAKE ?= $(HOME)/dev/pnd/src/pandora-libraries/testdata/scripts/pnd_make.sh |
294 | ||
8886a808 | 295 | rel: pcsx plugins/dfsound/pcsxr_spu_area3.out $(PLUGINS) \ |
9e0630ab | 296 | frontend/pandora/pcsx.sh frontend/pandora/pcsx.pxml.templ frontend/pandora/pcsx.png \ |
297 | frontend/pandora/picorestore frontend/pandora/skin readme.txt COPYING | |
303ee308 | 298 | rm -rf out |
bbd837c6 | 299 | mkdir -p out/plugins |
303ee308 | 300 | cp -r $^ out/ |
3938f69a | 301 | sed -e 's/%PR%/$(VER)/g' out/pcsx.pxml.templ > out/pcsx.pxml |
302 | rm out/pcsx.pxml.templ | |
bbd837c6 | 303 | mv out/*.so out/plugins/ |
9e0630ab | 304 | $(PND_MAKE) -p pcsx_rearmed_$(VER).pnd -d out -x out/pcsx.pxml -i frontend/pandora/pcsx.png -c |
4132e8ca | 305 | endif |
306 | ||
307 | ifeq "$(PLATFORM)" "caanoo" | |
308 | PLAT_CLEAN = caanoo_clean | |
309 | ||
310 | caanoo_clean: | |
311 | $(RM) frontend/320240/pollux_set | |
312 | ||
4132e8ca | 313 | rel: pcsx $(PLUGINS) \ |
314 | frontend/320240/caanoo.gpe frontend/320240/pcsx26.png \ | |
315 | frontend/320240/pcsxb.png frontend/320240/skin \ | |
316 | frontend/warm/bin/warm_2.6.24.ko frontend/320240/pollux_set \ | |
317 | frontend/320240/pcsx_rearmed.ini frontend/320240/haptic_w.cfg \ | |
318 | frontend/320240/haptic_s.cfg \ | |
319 | readme.txt COPYING | |
320 | rm -rf out | |
321 | mkdir -p out/pcsx_rearmed/plugins | |
322 | cp -r $^ out/pcsx_rearmed/ | |
4132e8ca | 323 | mv out/pcsx_rearmed/*.so out/pcsx_rearmed/plugins/ |
324 | mv out/pcsx_rearmed/caanoo.gpe out/pcsx_rearmed/pcsx.gpe | |
325 | mv out/pcsx_rearmed/pcsx_rearmed.ini out/ | |
326 | mkdir out/pcsx_rearmed/lib/ | |
327 | cp ./lib/libbz2.so.1 out/pcsx_rearmed/lib/ | |
328 | mkdir out/pcsx_rearmed/bios/ | |
329 | cd out && zip -9 -r ../pcsx_rearmed_$(VER)_caanoo.zip * | |
330 | endif |