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