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