| 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 | ifeq ($(platform), $(filter $(platform), vita ctr)) |
| 10 | CFLAGS += -O3 -DNDEBUG |
| 11 | else |
| 12 | CFLAGS += -O2 -DNDEBUG |
| 13 | endif |
| 14 | endif |
| 15 | CXXFLAGS += $(CFLAGS) |
| 16 | #DRC_DBG = 1 |
| 17 | #PCNT = 1 |
| 18 | |
| 19 | # Suppress minor warnings for dependencies |
| 20 | deps/%: CFLAGS += -Wno-unused -Wno-unused-function |
| 21 | |
| 22 | all: config.mak target_ plugins_ |
| 23 | |
| 24 | ifndef NO_CONFIG_MAK |
| 25 | ifneq ($(wildcard config.mak),) |
| 26 | config.mak: ./configure |
| 27 | @echo $@ is out-of-date, running configure |
| 28 | @sed -n "/.*Configured with/s/[^:]*: //p" $@ | sh |
| 29 | include config.mak |
| 30 | else |
| 31 | config.mak: |
| 32 | @echo "Please run ./configure before running make!" |
| 33 | @exit 1 |
| 34 | endif |
| 35 | else # NO_CONFIG_MAK |
| 36 | config.mak: |
| 37 | endif |
| 38 | |
| 39 | -include Makefile.local |
| 40 | |
| 41 | CC_LINK ?= $(CC) |
| 42 | CC_AS ?= $(CC) |
| 43 | LDFLAGS += $(MAIN_LDFLAGS) |
| 44 | EXTRA_LDFLAGS ?= -Wl,-Map=$@.map |
| 45 | LDLIBS += $(MAIN_LDLIBS) |
| 46 | ifdef PCNT |
| 47 | CFLAGS += -DPCNT |
| 48 | endif |
| 49 | |
| 50 | # core |
| 51 | OBJS += libpcsxcore/cdriso.o libpcsxcore/cdrom.o libpcsxcore/cheat.o libpcsxcore/database.o \ |
| 52 | libpcsxcore/decode_xa.o libpcsxcore/mdec.o \ |
| 53 | libpcsxcore/misc.o libpcsxcore/plugins.o libpcsxcore/ppf.o libpcsxcore/psxbios.o \ |
| 54 | libpcsxcore/psxcommon.o libpcsxcore/psxcounters.o libpcsxcore/psxdma.o libpcsxcore/psxhle.o \ |
| 55 | libpcsxcore/psxhw.o libpcsxcore/psxinterpreter.o libpcsxcore/psxmem.o libpcsxcore/r3000a.o \ |
| 56 | libpcsxcore/sio.o libpcsxcore/spu.o |
| 57 | OBJS += libpcsxcore/gte.o libpcsxcore/gte_nf.o libpcsxcore/gte_divider.o |
| 58 | |
| 59 | ifeq ($(DEBUG), 1) |
| 60 | OBJS += libpcsxcore/debug.o libpcsxcore/socket.o libpcsxcore/disr3000a.o |
| 61 | endif |
| 62 | |
| 63 | ifeq ($(WANT_ZLIB),1) |
| 64 | CFLAGS += -Ideps/libchdr/deps/zlib-1.2.11 |
| 65 | OBJS += deps/libchdr/deps/zlib-1.2.11/adler32.o \ |
| 66 | deps/libchdr/deps/zlib-1.2.11/compress.o \ |
| 67 | deps/libchdr/deps/zlib-1.2.11/crc32.o \ |
| 68 | deps/libchdr/deps/zlib-1.2.11/deflate.o \ |
| 69 | deps/libchdr/deps/zlib-1.2.11/gzclose.o \ |
| 70 | deps/libchdr/deps/zlib-1.2.11/gzlib.o \ |
| 71 | deps/libchdr/deps/zlib-1.2.11/gzread.o \ |
| 72 | deps/libchdr/deps/zlib-1.2.11/gzwrite.o \ |
| 73 | deps/libchdr/deps/zlib-1.2.11/infback.o \ |
| 74 | deps/libchdr/deps/zlib-1.2.11/inffast.o \ |
| 75 | deps/libchdr/deps/zlib-1.2.11/inflate.o \ |
| 76 | deps/libchdr/deps/zlib-1.2.11/inftrees.o \ |
| 77 | deps/libchdr/deps/zlib-1.2.11/trees.o \ |
| 78 | deps/libchdr/deps/zlib-1.2.11/uncompr.o \ |
| 79 | deps/libchdr/deps/zlib-1.2.11/zutil.o |
| 80 | endif |
| 81 | ifeq "$(ARCH)" "arm" |
| 82 | OBJS += libpcsxcore/gte_arm.o |
| 83 | endif |
| 84 | ifeq "$(HAVE_NEON)" "1" |
| 85 | OBJS += libpcsxcore/gte_neon.o |
| 86 | endif |
| 87 | libpcsxcore/psxbios.o: CFLAGS += -Wno-nonnull |
| 88 | |
| 89 | # dynarec |
| 90 | ifeq "$(DYNAREC)" "lightrec" |
| 91 | CFLAGS += -Ideps/lightning/include -Ideps/lightrec -Iinclude/lightning -Iinclude/lightrec \ |
| 92 | -DLIGHTREC -DLIGHTREC_STATIC |
| 93 | OBJS += libpcsxcore/lightrec/plugin.o |
| 94 | OBJS += deps/lightning/lib/jit_disasm.o \ |
| 95 | deps/lightning/lib/jit_memory.o \ |
| 96 | deps/lightning/lib/jit_names.o \ |
| 97 | deps/lightning/lib/jit_note.o \ |
| 98 | deps/lightning/lib/jit_print.o \ |
| 99 | deps/lightning/lib/jit_size.o \ |
| 100 | deps/lightning/lib/lightning.o \ |
| 101 | deps/lightrec/blockcache.o \ |
| 102 | deps/lightrec/disassembler.o \ |
| 103 | deps/lightrec/emitter.o \ |
| 104 | deps/lightrec/interpreter.o \ |
| 105 | deps/lightrec/lightrec.o \ |
| 106 | deps/lightrec/memmanager.o \ |
| 107 | deps/lightrec/optimizer.o \ |
| 108 | deps/lightrec/regcache.o \ |
| 109 | deps/lightrec/recompiler.o \ |
| 110 | deps/lightrec/reaper.o |
| 111 | ifeq ($(MMAP_WIN32),1) |
| 112 | CFLAGS += -Iinclude/mman |
| 113 | OBJS += deps/mman/mman.o |
| 114 | endif |
| 115 | else ifeq "$(DYNAREC)" "ari64" |
| 116 | OBJS += libpcsxcore/new_dynarec/new_dynarec.o |
| 117 | OBJS += libpcsxcore/new_dynarec/pcsxmem.o |
| 118 | ifeq "$(ARCH)" "arm" |
| 119 | OBJS += libpcsxcore/new_dynarec/linkage_arm.o |
| 120 | libpcsxcore/new_dynarec/new_dynarec.o: libpcsxcore/new_dynarec/assem_arm.c |
| 121 | else ifneq (,$(findstring $(ARCH),aarch64 arm64)) |
| 122 | OBJS += libpcsxcore/new_dynarec/linkage_arm64.o |
| 123 | libpcsxcore/new_dynarec/new_dynarec.o: libpcsxcore/new_dynarec/assem_arm64.c |
| 124 | else |
| 125 | $(error no dynarec support for architecture $(ARCH)) |
| 126 | endif |
| 127 | else |
| 128 | CFLAGS += -DDRC_DISABLE |
| 129 | endif |
| 130 | OBJS += libpcsxcore/new_dynarec/emu_if.o |
| 131 | libpcsxcore/new_dynarec/new_dynarec.o: libpcsxcore/new_dynarec/pcsxmem_inline.c |
| 132 | ifdef DRC_DBG |
| 133 | libpcsxcore/new_dynarec/emu_if.o: CFLAGS += -D_FILE_OFFSET_BITS=64 |
| 134 | CFLAGS += -DDRC_DBG |
| 135 | endif |
| 136 | ifeq "$(BASE_ADDR_DYNAMIC)" "1" |
| 137 | libpcsxcore/new_dynarec/%.o: CFLAGS += -DBASE_ADDR_DYNAMIC=1 |
| 138 | endif |
| 139 | |
| 140 | # spu |
| 141 | OBJS += plugins/dfsound/dma.o plugins/dfsound/freeze.o \ |
| 142 | plugins/dfsound/registers.o plugins/dfsound/spu.o \ |
| 143 | plugins/dfsound/out.o plugins/dfsound/nullsnd.o |
| 144 | plugins/dfsound/spu.o: plugins/dfsound/adsr.c plugins/dfsound/reverb.c \ |
| 145 | plugins/dfsound/xa.c |
| 146 | ifeq "$(ARCH)" "arm" |
| 147 | OBJS += plugins/dfsound/arm_utils.o |
| 148 | endif |
| 149 | ifeq "$(HAVE_C64_TOOLS)" "1" |
| 150 | plugins/dfsound/spu.o: CFLAGS += -DC64X_DSP |
| 151 | plugins/dfsound/spu.o: plugins/dfsound/spu_c64x.c |
| 152 | frontend/menu.o: CFLAGS += -DC64X_DSP |
| 153 | endif |
| 154 | ifneq ($(findstring oss,$(SOUND_DRIVERS)),) |
| 155 | plugins/dfsound/out.o: CFLAGS += -DHAVE_OSS |
| 156 | OBJS += plugins/dfsound/oss.o |
| 157 | endif |
| 158 | ifneq ($(findstring alsa,$(SOUND_DRIVERS)),) |
| 159 | plugins/dfsound/out.o: CFLAGS += -DHAVE_ALSA |
| 160 | OBJS += plugins/dfsound/alsa.o |
| 161 | LDLIBS += -lasound |
| 162 | endif |
| 163 | ifneq ($(findstring sdl,$(SOUND_DRIVERS)),) |
| 164 | plugins/dfsound/out.o: CFLAGS += -DHAVE_SDL |
| 165 | OBJS += plugins/dfsound/sdl.o |
| 166 | endif |
| 167 | ifneq ($(findstring pulseaudio,$(SOUND_DRIVERS)),) |
| 168 | plugins/dfsound/out.o: CFLAGS += -DHAVE_PULSE |
| 169 | OBJS += plugins/dfsound/pulseaudio.o |
| 170 | endif |
| 171 | ifneq ($(findstring libretro,$(SOUND_DRIVERS)),) |
| 172 | plugins/dfsound/out.o: CFLAGS += -DHAVE_LIBRETRO |
| 173 | endif |
| 174 | |
| 175 | # builtin gpu |
| 176 | OBJS += plugins/gpulib/gpu.o plugins/gpulib/vout_pl.o |
| 177 | ifeq "$(BUILTIN_GPU)" "neon" |
| 178 | CFLAGS += -DGPU_NEON |
| 179 | OBJS += plugins/gpu_neon/psx_gpu_if.o |
| 180 | ifeq "$(HAVE_NEON)" "1" |
| 181 | OBJS += plugins/gpu_neon/psx_gpu/psx_gpu_arm_neon.o |
| 182 | plugins/gpu_neon/psx_gpu_if.o: CFLAGS += -DNEON_BUILD -DTEXTURE_CACHE_4BPP -DTEXTURE_CACHE_8BPP |
| 183 | else |
| 184 | plugins/gpu_neon/psx_gpu_if.o: CFLAGS += -DTEXTURE_CACHE_4BPP -DTEXTURE_CACHE_8BPP |
| 185 | endif |
| 186 | plugins/gpu_neon/psx_gpu_if.o: plugins/gpu_neon/psx_gpu/*.c |
| 187 | endif |
| 188 | ifeq "$(BUILTIN_GPU)" "peops" |
| 189 | CFLAGS += -DGPU_PEOPS |
| 190 | # note: code is not safe for strict-aliasing? (Castlevania problems) |
| 191 | plugins/dfxvideo/gpulib_if.o: CFLAGS += -fno-strict-aliasing |
| 192 | plugins/dfxvideo/gpulib_if.o: plugins/dfxvideo/prim.c plugins/dfxvideo/soft.c |
| 193 | OBJS += plugins/dfxvideo/gpulib_if.o |
| 194 | ifeq "$(THREAD_RENDERING)" "1" |
| 195 | CFLAGS += -DTHREAD_RENDERING |
| 196 | OBJS += plugins/gpulib/gpulib_thread_if.o |
| 197 | endif |
| 198 | endif |
| 199 | ifeq "$(BUILTIN_GPU)" "unai" |
| 200 | CFLAGS += -DGPU_UNAI |
| 201 | CFLAGS += -DUSE_GPULIB=1 |
| 202 | #CFLAGS += -DINLINE="static __inline__" |
| 203 | #CFLAGS += -Dasm="__asm__ __volatile__" |
| 204 | OBJS += plugins/gpu_unai/gpulib_if.o |
| 205 | ifeq "$(ARCH)" "arm" |
| 206 | OBJS += plugins/gpu_unai/gpu_arm.o |
| 207 | endif |
| 208 | ifeq "$(THREAD_RENDERING)" "1" |
| 209 | CFLAGS += -DTHREAD_RENDERING |
| 210 | OBJS += plugins/gpulib/gpulib_thread_if.o |
| 211 | endif |
| 212 | plugins/gpu_unai/gpulib_if.o: CFLAGS += -DREARMED -O3 |
| 213 | CC_LINK = $(CXX) |
| 214 | endif |
| 215 | |
| 216 | # cdrcimg |
| 217 | OBJS += plugins/cdrcimg/cdrcimg.o |
| 218 | |
| 219 | # libchdr |
| 220 | ifeq "$(HAVE_CHD)" "1" |
| 221 | CFLAGS += -Ideps/libchdr/include |
| 222 | CFLAGS += -Ideps/libchdr/include/libchdr |
| 223 | OBJS += deps/libchdr/deps/lzma-19.00/src/Alloc.o |
| 224 | OBJS += deps/libchdr/deps/lzma-19.00/src/Bra86.o |
| 225 | OBJS += deps/libchdr/deps/lzma-19.00/src/BraIA64.o |
| 226 | OBJS += deps/libchdr/deps/lzma-19.00/src/CpuArch.o |
| 227 | OBJS += deps/libchdr/deps/lzma-19.00/src/Delta.o |
| 228 | OBJS += deps/libchdr/deps/lzma-19.00/src/LzFind.o |
| 229 | OBJS += deps/libchdr/deps/lzma-19.00/src/Lzma86Dec.o |
| 230 | OBJS += deps/libchdr/deps/lzma-19.00/src/LzmaDec.o |
| 231 | OBJS += deps/libchdr/deps/lzma-19.00/src/LzmaEnc.o |
| 232 | OBJS += deps/libchdr/deps/lzma-19.00/src/Sort.o |
| 233 | OBJS += deps/libchdr/src/libchdr_bitstream.o |
| 234 | OBJS += deps/libchdr/src/libchdr_cdrom.o |
| 235 | OBJS += deps/libchdr/src/libchdr_chd.o |
| 236 | OBJS += deps/libchdr/src/libchdr_flac.o |
| 237 | OBJS += deps/libchdr/src/libchdr_huffman.o |
| 238 | CFLAGS += -Ideps/libchdr/deps/lzma-19.00/include |
| 239 | CFLAGS += -DHAVE_CHD -D_7ZIP_ST |
| 240 | LDFLAGS += -lm |
| 241 | endif |
| 242 | |
| 243 | # dfinput |
| 244 | ifneq "$(PLATFORM)" "libretro" |
| 245 | OBJS += plugins/dfinput/main.o plugins/dfinput/pad.o plugins/dfinput/guncon.o |
| 246 | endif |
| 247 | |
| 248 | # frontend/gui |
| 249 | OBJS += frontend/cspace.o |
| 250 | ifeq "$(HAVE_NEON)" "1" |
| 251 | OBJS += frontend/cspace_neon.o |
| 252 | else |
| 253 | ifeq "$(ARCH)" "arm" |
| 254 | OBJS += frontend/cspace_arm.o |
| 255 | endif |
| 256 | endif |
| 257 | |
| 258 | ifeq "$(PLATFORM)" "generic" |
| 259 | OBJS += frontend/libpicofe/in_sdl.o |
| 260 | OBJS += frontend/libpicofe/plat_sdl.o |
| 261 | OBJS += frontend/libpicofe/plat_dummy.o |
| 262 | OBJS += frontend/libpicofe/linux/in_evdev.o |
| 263 | OBJS += frontend/plat_sdl.o |
| 264 | ifeq "$(HAVE_GLES)" "1" |
| 265 | OBJS += frontend/libpicofe/gl.o frontend/libpicofe/gl_platform.o |
| 266 | LDLIBS += $(LDLIBS_GLES) |
| 267 | frontend/libpicofe/plat_sdl.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES) |
| 268 | frontend/libpicofe/gl_platform.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES) |
| 269 | frontend/libpicofe/gl.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES) |
| 270 | frontend/plat_sdl.o: CFLAGS += -DHAVE_GLES $(CFLAGS_GLES) |
| 271 | endif |
| 272 | USE_PLUGIN_LIB = 1 |
| 273 | USE_FRONTEND = 1 |
| 274 | endif |
| 275 | ifeq "$(PLATFORM)" "pandora" |
| 276 | OBJS += frontend/libpicofe/pandora/plat.o |
| 277 | OBJS += frontend/libpicofe/linux/fbdev.o frontend/libpicofe/linux/xenv.o |
| 278 | OBJS += frontend/libpicofe/linux/in_evdev.o |
| 279 | OBJS += frontend/plat_pandora.o frontend/plat_omap.o |
| 280 | frontend/main.o frontend/menu.o: CFLAGS += -include frontend/pandora/ui_feat.h |
| 281 | frontend/libpicofe/linux/plat.o: CFLAGS += -DPANDORA |
| 282 | USE_PLUGIN_LIB = 1 |
| 283 | USE_FRONTEND = 1 |
| 284 | endif |
| 285 | ifeq "$(PLATFORM)" "caanoo" |
| 286 | OBJS += frontend/libpicofe/gp2x/in_gp2x.o frontend/warm/warm.o |
| 287 | OBJS += frontend/libpicofe/gp2x/soc_pollux.o |
| 288 | OBJS += frontend/libpicofe/linux/in_evdev.o |
| 289 | OBJS += frontend/plat_pollux.o frontend/in_tsbutton.o frontend/blit320.o |
| 290 | frontend/main.o frontend/menu.o: CFLAGS += -include frontend/320240/ui_gp2x.h |
| 291 | USE_PLUGIN_LIB = 1 |
| 292 | USE_FRONTEND = 1 |
| 293 | endif |
| 294 | ifeq "$(PLATFORM)" "maemo" |
| 295 | OBJS += maemo/hildon.o maemo/main.o maemo/maemo_xkb.o frontend/pl_gun_ts.o |
| 296 | maemo/%.o: maemo/%.c |
| 297 | USE_PLUGIN_LIB = 1 |
| 298 | LDFLAGS += $(shell pkg-config --libs hildon-1 libpulse) |
| 299 | CFLAGS += $(shell pkg-config --cflags hildon-1) -DHAVE_TSLIB |
| 300 | CFLAGS += `pkg-config --cflags glib-2.0 libosso dbus-1 hildon-fm-2` |
| 301 | LDFLAGS += `pkg-config --libs glib-2.0 libosso dbus-1 hildon-fm-2` |
| 302 | endif |
| 303 | ifeq "$(PLATFORM)" "libretro" |
| 304 | ifeq "$(USE_LIBRETRO_VFS)" "1" |
| 305 | OBJS += libretro-common/compat/compat_posix_string.o |
| 306 | OBJS += libretro-common/compat/fopen_utf8.o |
| 307 | OBJS += libretro-common/encodings/compat_strl.o |
| 308 | OBJS += libretro-common/encodings/encoding_utf.o |
| 309 | OBJS += libretro-common/file/file_path.o |
| 310 | OBJS += libretro-common/streams/file_stream.o |
| 311 | OBJS += libretro-common/streams/file_stream_transforms.o |
| 312 | OBJS += libretro-common/string/stdstring.o |
| 313 | OBJS += libretro-common/time/rtime.o |
| 314 | OBJS += libretro-common/vfs/vfs_implementation.o |
| 315 | CFLAGS += -DUSE_LIBRETRO_VFS |
| 316 | endif |
| 317 | OBJS += frontend/libretro.o |
| 318 | CFLAGS += -Ilibretro-common/include |
| 319 | CFLAGS += -DFRONTEND_SUPPORTS_RGB565 |
| 320 | CFLAGS += -DHAVE_LIBRETRO |
| 321 | |
| 322 | ifneq ($(DYNAREC),lightrec) |
| 323 | ifeq ($(MMAP_WIN32),1) |
| 324 | OBJS += libpcsxcore/memmap_win32.o |
| 325 | endif |
| 326 | endif |
| 327 | endif |
| 328 | |
| 329 | ifeq "$(USE_PLUGIN_LIB)" "1" |
| 330 | OBJS += frontend/plugin_lib.o |
| 331 | OBJS += frontend/libpicofe/linux/plat.o |
| 332 | OBJS += frontend/libpicofe/readpng.o frontend/libpicofe/fonts.o |
| 333 | frontend/libpicofe/linux/plat.o: CFLAGS += -DNO_HOME_DIR |
| 334 | ifeq "$(HAVE_NEON)" "1" |
| 335 | OBJS += frontend/libpicofe/arm/neon_scale2x.o |
| 336 | OBJS += frontend/libpicofe/arm/neon_eagle2x.o |
| 337 | frontend/libpicofe/arm/neon_scale2x.o: CFLAGS += -DDO_BGR_TO_RGB |
| 338 | frontend/libpicofe/arm/neon_eagle2x.o: CFLAGS += -DDO_BGR_TO_RGB |
| 339 | endif |
| 340 | endif |
| 341 | ifeq "$(USE_FRONTEND)" "1" |
| 342 | OBJS += frontend/menu.o |
| 343 | OBJS += frontend/libpicofe/input.o |
| 344 | frontend/menu.o: frontend/libpicofe/menu.c |
| 345 | ifeq "$(HAVE_TSLIB)" "1" |
| 346 | frontend/%.o: CFLAGS += -DHAVE_TSLIB |
| 347 | OBJS += frontend/pl_gun_ts.o |
| 348 | endif |
| 349 | else |
| 350 | CFLAGS += -DNO_FRONTEND |
| 351 | endif |
| 352 | |
| 353 | # misc |
| 354 | OBJS += frontend/main.o frontend/plugin.o |
| 355 | |
| 356 | |
| 357 | frontend/menu.o frontend/main.o: frontend/revision.h |
| 358 | frontend/plat_sdl.o frontend/libretro.o: frontend/revision.h |
| 359 | |
| 360 | frontend/libpicofe/%.c: |
| 361 | @echo "libpicofe module is missing, please run:" |
| 362 | @echo "git submodule init && git submodule update" |
| 363 | @exit 1 |
| 364 | |
| 365 | libpcsxcore/gte_nf.o: libpcsxcore/gte.c |
| 366 | $(CC) -c -o $@ $^ $(CFLAGS) -DFLAGLESS |
| 367 | |
| 368 | frontend/revision.h: FORCE |
| 369 | @(git describe --always || echo) | sed -e 's/.*/#define REV "\0"/' > $@_ |
| 370 | @diff -q $@_ $@ > /dev/null 2>&1 || cp $@_ $@ |
| 371 | @rm $@_ |
| 372 | |
| 373 | %.o: %.S |
| 374 | $(CC_AS) $(CFLAGS) -c $^ -o $@ |
| 375 | |
| 376 | %.o: %.cpp |
| 377 | $(CXX) $(CXXFLAGS) -c -o $@ $< |
| 378 | |
| 379 | %.o: %.c |
| 380 | $(CC) $(CFLAGS) -c -o $@ $< |
| 381 | |
| 382 | target_: $(TARGET) |
| 383 | |
| 384 | $(TARGET): $(OBJS) |
| 385 | ifeq ($(STATIC_LINKING), 1) |
| 386 | $(AR) rcs $@ $(OBJS) |
| 387 | else |
| 388 | $(CC_LINK) -o $@ $^ $(LDFLAGS) $(LDLIBS) $(EXTRA_LDFLAGS) |
| 389 | endif |
| 390 | |
| 391 | clean: $(PLAT_CLEAN) clean_plugins |
| 392 | $(RM) $(TARGET) $(OBJS) $(TARGET).map frontend/revision.h |
| 393 | |
| 394 | ifneq ($(PLUGINS),) |
| 395 | plugins_: $(PLUGINS) |
| 396 | |
| 397 | $(PLUGINS): |
| 398 | make -C $(dir $@) |
| 399 | |
| 400 | clean_plugins: |
| 401 | make -C plugins/gpulib/ clean |
| 402 | for dir in $(PLUGINS) ; do \ |
| 403 | $(MAKE) -C $$(dirname $$dir) clean; done |
| 404 | else |
| 405 | plugins_: |
| 406 | clean_plugins: |
| 407 | endif |
| 408 | |
| 409 | .PHONY: all clean target_ plugins_ clean_plugins FORCE |
| 410 | |
| 411 | # ----------- release ----------- |
| 412 | |
| 413 | VER ?= $(shell git describe --always HEAD) |
| 414 | |
| 415 | ifeq "$(PLATFORM)" "generic" |
| 416 | OUT = pcsx_rearmed_$(VER) |
| 417 | |
| 418 | rel: pcsx $(PLUGINS) \ |
| 419 | frontend/pandora/skin readme.txt COPYING |
| 420 | rm -rf $(OUT) |
| 421 | mkdir -p $(OUT)/plugins |
| 422 | mkdir -p $(OUT)/bios |
| 423 | cp -r $^ $(OUT)/ |
| 424 | mv $(OUT)/*.so* $(OUT)/plugins/ |
| 425 | zip -9 -r $(OUT).zip $(OUT) |
| 426 | endif |
| 427 | |
| 428 | ifeq "$(PLATFORM)" "pandora" |
| 429 | PND_MAKE ?= $(HOME)/dev/pnd/src/pandora-libraries/testdata/scripts/pnd_make.sh |
| 430 | |
| 431 | rel: pcsx plugins/dfsound/pcsxr_spu_area3.out $(PLUGINS) \ |
| 432 | frontend/pandora/pcsx.sh frontend/pandora/pcsx.pxml.templ frontend/pandora/pcsx.png \ |
| 433 | frontend/pandora/picorestore frontend/pandora/skin readme.txt COPYING |
| 434 | rm -rf out |
| 435 | mkdir -p out/plugins |
| 436 | cp -r $^ out/ |
| 437 | sed -e 's/%PR%/$(VER)/g' out/pcsx.pxml.templ > out/pcsx.pxml |
| 438 | rm out/pcsx.pxml.templ |
| 439 | mv out/*.so out/plugins/ |
| 440 | $(PND_MAKE) -p pcsx_rearmed_$(VER).pnd -d out -x out/pcsx.pxml -i frontend/pandora/pcsx.png -c |
| 441 | endif |
| 442 | |
| 443 | ifeq "$(PLATFORM)" "caanoo" |
| 444 | PLAT_CLEAN = caanoo_clean |
| 445 | |
| 446 | caanoo_clean: |
| 447 | $(RM) frontend/320240/pollux_set |
| 448 | |
| 449 | rel: pcsx $(PLUGINS) \ |
| 450 | frontend/320240/caanoo.gpe frontend/320240/pcsx26.png \ |
| 451 | frontend/320240/pcsxb.png frontend/320240/skin \ |
| 452 | frontend/warm/bin/warm_2.6.24.ko frontend/320240/pollux_set \ |
| 453 | frontend/320240/pcsx_rearmed.ini frontend/320240/haptic_w.cfg \ |
| 454 | frontend/320240/haptic_s.cfg \ |
| 455 | readme.txt COPYING |
| 456 | rm -rf out |
| 457 | mkdir -p out/pcsx_rearmed/plugins |
| 458 | cp -r $^ out/pcsx_rearmed/ |
| 459 | mv out/pcsx_rearmed/*.so out/pcsx_rearmed/plugins/ |
| 460 | mv out/pcsx_rearmed/caanoo.gpe out/pcsx_rearmed/pcsx.gpe |
| 461 | mv out/pcsx_rearmed/pcsx_rearmed.ini out/ |
| 462 | mkdir out/pcsx_rearmed/lib/ |
| 463 | cp ./lib/libbz2.so.1 out/pcsx_rearmed/lib/ |
| 464 | mkdir out/pcsx_rearmed/bios/ |
| 465 | cd out && zip -9 -r ../pcsx_rearmed_$(VER)_caanoo.zip * |
| 466 | endif |