2012-11-01 15:19:01 +00:00
|
|
|
LOCAL_PATH := $(call my-dir)
|
|
|
|
|
|
|
|
# BEGIN Native Audio Separate Library - copy paste this section to your Android.mk
|
|
|
|
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
|
|
|
|
LOCAL_MODULE := native_audio
|
2013-12-21 12:05:51 +00:00
|
|
|
LOCAL_CFLAGS := -O3 -fsigned-char -Wall -Wno-multichar -Wno-psabi -D__STDC_CONSTANT_MACROS
|
2013-02-04 19:19:00 +00:00
|
|
|
# yes, it's really CPPFLAGS for C++
|
2013-08-30 18:13:59 +00:00
|
|
|
LOCAL_CPPFLAGS := -fno-exceptions -std=gnu++11 -fno-rtti
|
2012-11-01 15:19:01 +00:00
|
|
|
NATIVE := ../../native
|
|
|
|
LOCAL_SRC_FILES := \
|
|
|
|
$(NATIVE)/android/native-audio-so.cpp
|
|
|
|
LOCAL_LDLIBS := -lOpenSLES -llog
|
|
|
|
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|
|
|
|
|
|
|
|
# END Native Audio Separate Library - copy paste this section to your Android.mk
|
|
|
|
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
|
|
|
|
#TARGET_PLATFORM := android-8
|
|
|
|
|
|
|
|
NATIVE := ../../native
|
|
|
|
SRC := ../..
|
|
|
|
|
2013-10-14 09:39:34 +00:00
|
|
|
include $(LOCAL_PATH)/Locals.mk
|
2012-11-01 15:19:01 +00:00
|
|
|
|
2013-03-21 19:52:33 +00:00
|
|
|
# http://software.intel.com/en-us/articles/getting-started-on-optimizing-ndk-project-for-multiple-cpu-architectures
|
|
|
|
|
2013-10-28 15:45:25 +00:00
|
|
|
ifeq ($(TARGET_ARCH_ABI),x86)
|
2013-03-21 19:52:33 +00:00
|
|
|
ARCH_FILES := \
|
|
|
|
$(SRC)/Common/ABI.cpp \
|
|
|
|
$(SRC)/Common/x64Emitter.cpp \
|
|
|
|
$(SRC)/Common/CPUDetect.cpp \
|
|
|
|
$(SRC)/Common/Thunk.cpp \
|
|
|
|
$(SRC)/Core/MIPS/x86/CompALU.cpp \
|
|
|
|
$(SRC)/Core/MIPS/x86/CompBranch.cpp \
|
|
|
|
$(SRC)/Core/MIPS/x86/CompFPU.cpp \
|
|
|
|
$(SRC)/Core/MIPS/x86/CompLoadStore.cpp \
|
|
|
|
$(SRC)/Core/MIPS/x86/CompVFPU.cpp \
|
2013-12-17 22:40:27 +00:00
|
|
|
$(SRC)/Core/MIPS/x86/CompReplace.cpp \
|
2013-03-21 19:52:33 +00:00
|
|
|
$(SRC)/Core/MIPS/x86/Asm.cpp \
|
|
|
|
$(SRC)/Core/MIPS/x86/Jit.cpp \
|
|
|
|
$(SRC)/Core/MIPS/x86/RegCache.cpp \
|
2013-11-24 14:58:15 +00:00
|
|
|
$(SRC)/Core/MIPS/x86/RegCacheFPU.cpp \
|
|
|
|
$(SRC)/GPU/GLES/VertexDecoderX86.cpp
|
2013-03-21 19:52:33 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(TARGET_ARCH_ABI),armeabi-v7a)
|
|
|
|
ARCH_FILES := \
|
2013-11-02 17:14:25 +00:00
|
|
|
$(SRC)/GPU/Common/TextureDecoderNEON.cpp.neon \
|
2013-03-21 19:52:33 +00:00
|
|
|
$(SRC)/Common/ArmEmitter.cpp \
|
|
|
|
$(SRC)/Common/ArmCPUDetect.cpp \
|
|
|
|
$(SRC)/Common/ArmThunk.cpp \
|
|
|
|
$(SRC)/Core/MIPS/ARM/ArmCompALU.cpp \
|
|
|
|
$(SRC)/Core/MIPS/ARM/ArmCompBranch.cpp \
|
|
|
|
$(SRC)/Core/MIPS/ARM/ArmCompFPU.cpp \
|
|
|
|
$(SRC)/Core/MIPS/ARM/ArmCompLoadStore.cpp \
|
|
|
|
$(SRC)/Core/MIPS/ARM/ArmCompVFPU.cpp \
|
2013-11-19 15:25:38 +00:00
|
|
|
$(SRC)/Core/MIPS/ARM/ArmCompVFPUNEON.cpp \
|
2013-12-17 22:40:27 +00:00
|
|
|
$(SRC)/Core/MIPS/ARM/ArmCompReplace.cpp \
|
2013-03-21 19:52:33 +00:00
|
|
|
$(SRC)/Core/MIPS/ARM/ArmAsm.cpp \
|
|
|
|
$(SRC)/Core/MIPS/ARM/ArmJit.cpp \
|
|
|
|
$(SRC)/Core/MIPS/ARM/ArmRegCache.cpp \
|
|
|
|
$(SRC)/Core/MIPS/ARM/ArmRegCacheFPU.cpp \
|
2013-11-24 14:58:15 +00:00
|
|
|
$(SRC)/GPU/GLES/VertexDecoderArm.cpp \
|
2013-11-19 15:25:38 +00:00
|
|
|
ArmEmitterTest.cpp
|
2013-03-21 19:52:33 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(TARGET_ARCH_ABI),armeabi)
|
|
|
|
ARCH_FILES := \
|
|
|
|
$(SRC)/Common/ArmEmitter.cpp \
|
|
|
|
$(SRC)/Common/ArmCPUDetect.cpp \
|
|
|
|
$(SRC)/Common/ArmThunk.cpp \
|
|
|
|
$(SRC)/Core/MIPS/ARM/ArmCompALU.cpp \
|
|
|
|
$(SRC)/Core/MIPS/ARM/ArmCompBranch.cpp \
|
|
|
|
$(SRC)/Core/MIPS/ARM/ArmCompFPU.cpp \
|
|
|
|
$(SRC)/Core/MIPS/ARM/ArmCompLoadStore.cpp \
|
|
|
|
$(SRC)/Core/MIPS/ARM/ArmCompVFPU.cpp \
|
2013-11-19 15:25:38 +00:00
|
|
|
$(SRC)/Core/MIPS/ARM/ArmCompVFPUNEON.cpp \
|
2013-12-17 22:40:27 +00:00
|
|
|
$(SRC)/Core/MIPS/ARM/ArmCompReplace.cpp \
|
2013-03-21 19:52:33 +00:00
|
|
|
$(SRC)/Core/MIPS/ARM/ArmAsm.cpp \
|
|
|
|
$(SRC)/Core/MIPS/ARM/ArmJit.cpp \
|
|
|
|
$(SRC)/Core/MIPS/ARM/ArmRegCache.cpp \
|
|
|
|
$(SRC)/Core/MIPS/ARM/ArmRegCacheFPU.cpp \
|
2013-11-24 14:58:15 +00:00
|
|
|
$(SRC)/GPU/GLES/VertexDecoderArm.cpp \
|
2013-11-19 15:25:38 +00:00
|
|
|
ArmEmitterTest.cpp
|
2013-03-21 19:52:33 +00:00
|
|
|
endif
|
|
|
|
|
2013-10-14 09:39:34 +00:00
|
|
|
EXEC_AND_LIB_FILES := \
|
2013-03-21 19:52:33 +00:00
|
|
|
$(ARCH_FILES) \
|
2013-03-06 23:10:53 +00:00
|
|
|
TestRunner.cpp \
|
2013-09-04 08:51:14 +00:00
|
|
|
$(SRC)/Core/MIPS/MIPS.cpp.arm \
|
|
|
|
$(SRC)/Core/MIPS/MIPSAnalyst.cpp \
|
|
|
|
$(SRC)/Core/MIPS/MIPSDis.cpp \
|
|
|
|
$(SRC)/Core/MIPS/MIPSDisVFPU.cpp \
|
|
|
|
$(SRC)/Core/MIPS/MIPSInt.cpp.arm \
|
|
|
|
$(SRC)/Core/MIPS/MIPSIntVFPU.cpp.arm \
|
|
|
|
$(SRC)/Core/MIPS/MIPSStackWalk.cpp \
|
|
|
|
$(SRC)/Core/MIPS/MIPSTables.cpp \
|
|
|
|
$(SRC)/Core/MIPS/MIPSVFPUUtils.cpp.arm \
|
|
|
|
$(SRC)/Core/MIPS/MIPSCodeUtils.cpp.arm \
|
|
|
|
$(SRC)/Core/MIPS/MIPSDebugInterface.cpp \
|
2013-03-30 14:44:10 +00:00
|
|
|
$(SRC)/UI/ui_atlas.cpp \
|
2013-05-22 16:00:06 +00:00
|
|
|
$(SRC)/UI/OnScreenDisplay.cpp \
|
2013-01-08 12:49:52 +00:00
|
|
|
$(SRC)/ext/disarm.cpp \
|
2012-11-05 14:41:37 +00:00
|
|
|
$(SRC)/ext/libkirk/AES.c \
|
2013-02-24 14:45:10 +00:00
|
|
|
$(SRC)/ext/libkirk/amctrl.c \
|
2012-11-05 14:41:37 +00:00
|
|
|
$(SRC)/ext/libkirk/SHA1.c \
|
|
|
|
$(SRC)/ext/libkirk/bn.c \
|
|
|
|
$(SRC)/ext/libkirk/ec.c \
|
|
|
|
$(SRC)/ext/libkirk/kirk_engine.c \
|
2013-01-02 21:10:41 +00:00
|
|
|
$(SRC)/ext/snappy/snappy-c.cpp \
|
|
|
|
$(SRC)/ext/snappy/snappy.cpp \
|
2013-04-30 12:54:10 +00:00
|
|
|
$(SRC)/ext/xbrz/xbrz.cpp \
|
2013-08-17 05:58:38 +00:00
|
|
|
$(SRC)/ext/xxhash.c \
|
2013-05-22 09:04:58 +00:00
|
|
|
$(SRC)/Common/Crypto/md5.cpp \
|
2013-09-02 22:36:03 +00:00
|
|
|
$(SRC)/Common/Crypto/sha1.cpp \
|
2013-10-07 04:26:08 +00:00
|
|
|
$(SRC)/Common/ChunkFile.cpp \
|
2013-07-03 18:37:31 +00:00
|
|
|
$(SRC)/Common/KeyMap.cpp \
|
2012-11-01 15:19:01 +00:00
|
|
|
$(SRC)/Common/LogManager.cpp \
|
|
|
|
$(SRC)/Common/MemArena.cpp \
|
|
|
|
$(SRC)/Common/MemoryUtil.cpp \
|
|
|
|
$(SRC)/Common/MsgHandler.cpp \
|
|
|
|
$(SRC)/Common/FileUtil.cpp \
|
2013-05-03 06:22:15 +00:00
|
|
|
$(SRC)/Common/StringUtils.cpp \
|
2013-05-03 06:31:53 +00:00
|
|
|
$(SRC)/Common/ThreadPools.cpp \
|
2012-11-01 15:19:01 +00:00
|
|
|
$(SRC)/Common/Timer.cpp \
|
|
|
|
$(SRC)/Common/Misc.cpp \
|
|
|
|
$(SRC)/GPU/Math3D.cpp \
|
2012-12-29 11:34:11 +00:00
|
|
|
$(SRC)/GPU/GPUCommon.cpp \
|
2012-11-18 22:21:36 +00:00
|
|
|
$(SRC)/GPU/GPUState.cpp \
|
2012-12-26 23:18:45 +00:00
|
|
|
$(SRC)/GPU/GeDisasm.cpp \
|
2013-09-15 10:46:14 +00:00
|
|
|
$(SRC)/GPU/Common/IndexGenerator.cpp.arm \
|
|
|
|
$(SRC)/GPU/Common/VertexDecoderCommon.cpp.arm \
|
2013-09-16 04:27:13 +00:00
|
|
|
$(SRC)/GPU/Common/TextureDecoder.cpp \
|
2013-10-12 00:05:55 +00:00
|
|
|
$(SRC)/GPU/Common/PostShader.cpp \
|
2013-10-12 11:02:21 +00:00
|
|
|
$(SRC)/GPU/Debugger/Breakpoints.cpp \
|
2013-10-12 17:02:21 +00:00
|
|
|
$(SRC)/GPU/Debugger/Stepping.cpp \
|
2012-11-01 15:19:01 +00:00
|
|
|
$(SRC)/GPU/GLES/Framebuffer.cpp \
|
2013-08-20 20:34:47 +00:00
|
|
|
$(SRC)/GPU/GLES/GLES_GPU.cpp.arm \
|
2013-04-14 08:11:56 +00:00
|
|
|
$(SRC)/GPU/GLES/TextureCache.cpp.arm \
|
|
|
|
$(SRC)/GPU/GLES/TransformPipeline.cpp.arm \
|
2013-11-13 13:56:34 +00:00
|
|
|
$(SRC)/GPU/GLES/SoftwareTransform.cpp.arm \
|
2013-04-14 08:11:56 +00:00
|
|
|
$(SRC)/GPU/GLES/StateMapping.cpp.arm \
|
|
|
|
$(SRC)/GPU/GLES/VertexDecoder.cpp.arm \
|
2013-08-20 20:34:47 +00:00
|
|
|
$(SRC)/GPU/GLES/ShaderManager.cpp.arm \
|
|
|
|
$(SRC)/GPU/GLES/VertexShaderGenerator.cpp.arm \
|
|
|
|
$(SRC)/GPU/GLES/FragmentShaderGenerator.cpp.arm \
|
2013-05-02 01:06:35 +00:00
|
|
|
$(SRC)/GPU/GLES/TextureScaler.cpp \
|
2013-08-22 22:26:16 +00:00
|
|
|
$(SRC)/GPU/GLES/Spline.cpp \
|
2012-11-06 16:05:27 +00:00
|
|
|
$(SRC)/GPU/Null/NullGpu.cpp \
|
2013-08-17 08:49:50 +00:00
|
|
|
$(SRC)/GPU/Software/Clipper.cpp \
|
|
|
|
$(SRC)/GPU/Software/Lighting.cpp \
|
|
|
|
$(SRC)/GPU/Software/Rasterizer.cpp \
|
|
|
|
$(SRC)/GPU/Software/SoftGpu.cpp \
|
|
|
|
$(SRC)/GPU/Software/TransformUnit.cpp \
|
2012-11-01 15:19:01 +00:00
|
|
|
$(SRC)/Core/ELF/ElfReader.cpp \
|
2013-04-08 19:46:41 +00:00
|
|
|
$(SRC)/Core/ELF/PBPReader.cpp \
|
2012-11-05 14:41:37 +00:00
|
|
|
$(SRC)/Core/ELF/PrxDecrypter.cpp \
|
2012-11-30 20:49:59 +00:00
|
|
|
$(SRC)/Core/ELF/ParamSFO.cpp \
|
2013-10-17 14:00:43 +00:00
|
|
|
$(SRC)/Core/HW/SimpleAT3Dec.cpp \
|
2013-08-11 18:40:41 +00:00
|
|
|
$(SRC)/Core/HW/AsyncIOManager.cpp \
|
2012-11-06 14:45:13 +00:00
|
|
|
$(SRC)/Core/HW/MemoryStick.cpp \
|
2013-06-01 21:37:51 +00:00
|
|
|
$(SRC)/Core/HW/MpegDemux.cpp.arm \
|
2013-04-14 08:11:56 +00:00
|
|
|
$(SRC)/Core/HW/MediaEngine.cpp.arm \
|
|
|
|
$(SRC)/Core/HW/SasAudio.cpp.arm \
|
2012-11-01 15:19:01 +00:00
|
|
|
$(SRC)/Core/Core.cpp \
|
|
|
|
$(SRC)/Core/Config.cpp \
|
|
|
|
$(SRC)/Core/CoreTiming.cpp \
|
2013-05-31 05:42:27 +00:00
|
|
|
$(SRC)/Core/CwCheat.cpp \
|
2013-06-23 04:25:55 +00:00
|
|
|
$(SRC)/Core/HDRemaster.cpp \
|
2012-11-01 15:19:01 +00:00
|
|
|
$(SRC)/Core/Host.cpp \
|
|
|
|
$(SRC)/Core/Loaders.cpp \
|
|
|
|
$(SRC)/Core/PSPLoaders.cpp \
|
|
|
|
$(SRC)/Core/MemMap.cpp \
|
2012-11-18 22:21:36 +00:00
|
|
|
$(SRC)/Core/MemMapFunctions.cpp \
|
2013-03-01 16:58:05 +00:00
|
|
|
$(SRC)/Core/Reporting.cpp \
|
2012-12-27 18:34:22 +00:00
|
|
|
$(SRC)/Core/SaveState.cpp \
|
2012-11-01 15:19:01 +00:00
|
|
|
$(SRC)/Core/System.cpp \
|
|
|
|
$(SRC)/Core/PSPMixer.cpp \
|
|
|
|
$(SRC)/Core/Debugger/Breakpoints.cpp \
|
|
|
|
$(SRC)/Core/Debugger/SymbolMap.cpp \
|
2012-12-10 12:08:54 +00:00
|
|
|
$(SRC)/Core/Dialog/PSPDialog.cpp \
|
2013-09-13 15:19:53 +00:00
|
|
|
$(SRC)/Core/Dialog/PSPGamedataInstallDialog.cpp \
|
2012-12-10 12:08:54 +00:00
|
|
|
$(SRC)/Core/Dialog/PSPMsgDialog.cpp \
|
2013-10-13 02:32:56 +00:00
|
|
|
$(SRC)/Core/Dialog/PSPNetconfDialog.cpp \
|
2012-12-15 23:43:59 +00:00
|
|
|
$(SRC)/Core/Dialog/PSPOskDialog.cpp \
|
2012-12-10 12:08:54 +00:00
|
|
|
$(SRC)/Core/Dialog/PSPPlaceholderDialog.cpp \
|
|
|
|
$(SRC)/Core/Dialog/PSPSaveDialog.cpp \
|
|
|
|
$(SRC)/Core/Dialog/SavedataParam.cpp \
|
2013-02-22 19:05:07 +00:00
|
|
|
$(SRC)/Core/Font/PGF.cpp \
|
2012-11-01 15:19:01 +00:00
|
|
|
$(SRC)/Core/HLE/HLETables.cpp \
|
2013-11-30 19:57:44 +00:00
|
|
|
$(SRC)/Core/HLE/ReplaceTables.cpp \
|
2012-11-01 15:19:01 +00:00
|
|
|
$(SRC)/Core/HLE/HLE.cpp \
|
|
|
|
$(SRC)/Core/HLE/sceAtrac.cpp \
|
2013-10-28 15:45:25 +00:00
|
|
|
$(SRC)/Core/HLE/__sceAudio.cpp.arm \
|
|
|
|
$(SRC)/Core/HLE/sceAudio.cpp.arm \
|
|
|
|
$(SRC)/Core/HLE/sceAudiocodec.cpp.arm \
|
2013-01-29 16:17:41 +00:00
|
|
|
$(SRC)/Core/HLE/sceChnnlsv.cpp \
|
2013-06-30 12:21:56 +00:00
|
|
|
$(SRC)/Core/HLE/sceCcc.cpp \
|
2012-11-01 15:19:01 +00:00
|
|
|
$(SRC)/Core/HLE/sceCtrl.cpp \
|
2013-04-05 17:14:12 +00:00
|
|
|
$(SRC)/Core/HLE/sceDeflt.cpp \
|
2012-11-01 15:19:01 +00:00
|
|
|
$(SRC)/Core/HLE/sceDisplay.cpp \
|
|
|
|
$(SRC)/Core/HLE/sceDmac.cpp \
|
|
|
|
$(SRC)/Core/HLE/sceGe.cpp \
|
2012-11-22 21:29:51 +00:00
|
|
|
$(SRC)/Core/HLE/sceFont.cpp \
|
2013-09-04 08:34:00 +00:00
|
|
|
$(SRC)/Core/HLE/sceHeap.cpp \
|
2012-11-01 15:19:01 +00:00
|
|
|
$(SRC)/Core/HLE/sceHprm.cpp \
|
|
|
|
$(SRC)/Core/HLE/sceHttp.cpp \
|
2012-11-09 11:31:58 +00:00
|
|
|
$(SRC)/Core/HLE/sceImpose.cpp \
|
2012-11-01 15:19:01 +00:00
|
|
|
$(SRC)/Core/HLE/sceIo.cpp \
|
2013-05-15 11:49:34 +00:00
|
|
|
$(SRC)/Core/HLE/sceJpeg.cpp \
|
2012-11-01 15:19:01 +00:00
|
|
|
$(SRC)/Core/HLE/sceKernel.cpp \
|
|
|
|
$(SRC)/Core/HLE/sceKernelAlarm.cpp \
|
|
|
|
$(SRC)/Core/HLE/sceKernelEventFlag.cpp \
|
|
|
|
$(SRC)/Core/HLE/sceKernelInterrupt.cpp \
|
|
|
|
$(SRC)/Core/HLE/sceKernelMemory.cpp \
|
|
|
|
$(SRC)/Core/HLE/sceKernelModule.cpp \
|
|
|
|
$(SRC)/Core/HLE/sceKernelMutex.cpp \
|
|
|
|
$(SRC)/Core/HLE/sceKernelMbx.cpp \
|
|
|
|
$(SRC)/Core/HLE/sceKernelMsgPipe.cpp \
|
|
|
|
$(SRC)/Core/HLE/sceKernelSemaphore.cpp \
|
2013-04-14 08:11:56 +00:00
|
|
|
$(SRC)/Core/HLE/sceKernelThread.cpp.arm \
|
2012-11-01 15:19:01 +00:00
|
|
|
$(SRC)/Core/HLE/sceKernelTime.cpp \
|
|
|
|
$(SRC)/Core/HLE/sceKernelVTimer.cpp \
|
|
|
|
$(SRC)/Core/HLE/sceMpeg.cpp \
|
2013-05-15 11:49:34 +00:00
|
|
|
$(SRC)/Core/HLE/sceMd5.cpp \
|
2013-04-28 13:02:45 +00:00
|
|
|
$(SRC)/Core/HLE/sceMp4.cpp \
|
2013-05-06 13:09:40 +00:00
|
|
|
$(SRC)/Core/HLE/sceMp3.cpp \
|
2012-11-01 15:19:01 +00:00
|
|
|
$(SRC)/Core/HLE/sceNet.cpp \
|
2013-11-28 06:05:11 +00:00
|
|
|
$(SRC)/Core/HLE/proAdhoc.cpp \
|
2013-09-06 22:55:42 +00:00
|
|
|
$(SRC)/Core/HLE/sceNetAdhoc.cpp \
|
2012-12-06 18:44:29 +00:00
|
|
|
$(SRC)/Core/HLE/sceOpenPSID.cpp \
|
2013-03-15 14:45:00 +00:00
|
|
|
$(SRC)/Core/HLE/sceP3da.cpp \
|
2012-12-06 18:44:29 +00:00
|
|
|
$(SRC)/Core/HLE/sceParseHttp.cpp \
|
|
|
|
$(SRC)/Core/HLE/sceParseUri.cpp \
|
2012-11-01 15:19:01 +00:00
|
|
|
$(SRC)/Core/HLE/scePower.cpp \
|
|
|
|
$(SRC)/Core/HLE/sceRtc.cpp \
|
|
|
|
$(SRC)/Core/HLE/scePsmf.cpp \
|
|
|
|
$(SRC)/Core/HLE/sceSas.cpp \
|
2012-12-06 18:44:29 +00:00
|
|
|
$(SRC)/Core/HLE/sceSsl.cpp \
|
2012-11-01 15:19:01 +00:00
|
|
|
$(SRC)/Core/HLE/sceUmd.cpp \
|
2012-12-17 20:45:32 +00:00
|
|
|
$(SRC)/Core/HLE/sceUsb.cpp \
|
2012-11-01 15:19:01 +00:00
|
|
|
$(SRC)/Core/HLE/sceUtility.cpp \
|
2012-12-06 18:44:29 +00:00
|
|
|
$(SRC)/Core/HLE/sceVaudio.cpp \
|
2013-02-24 19:18:40 +00:00
|
|
|
$(SRC)/Core/HLE/scePspNpDrm_user.cpp \
|
2013-03-20 01:19:54 +00:00
|
|
|
$(SRC)/Core/HLE/sceGameUpdate.cpp \
|
2013-04-29 05:16:55 +00:00
|
|
|
$(SRC)/Core/HLE/sceNp.cpp \
|
|
|
|
$(SRC)/Core/HLE/scePauth.cpp \
|
2012-11-01 15:19:01 +00:00
|
|
|
$(SRC)/Core/FileSystems/BlockDevices.cpp \
|
|
|
|
$(SRC)/Core/FileSystems/ISOFileSystem.cpp \
|
2013-12-29 22:28:31 +00:00
|
|
|
$(SRC)/Core/FileSystems/FileSystem.cpp \
|
2012-11-01 15:19:01 +00:00
|
|
|
$(SRC)/Core/FileSystems/MetaFileSystem.cpp \
|
|
|
|
$(SRC)/Core/FileSystems/DirectoryFileSystem.cpp \
|
2013-07-28 06:46:26 +00:00
|
|
|
$(SRC)/Core/FileSystems/VirtualDiscFileSystem.cpp \
|
2013-05-08 19:41:22 +00:00
|
|
|
$(SRC)/Core/FileSystems/tlzrc.cpp \
|
2012-11-01 15:19:01 +00:00
|
|
|
$(SRC)/Core/MIPS/JitCommon/JitCommon.cpp \
|
2013-04-26 21:58:20 +00:00
|
|
|
$(SRC)/Core/MIPS/JitCommon/JitBlockCache.cpp \
|
2013-11-20 13:42:48 +00:00
|
|
|
$(SRC)/Core/Util/GameManager.cpp \
|
2012-11-18 12:04:49 +00:00
|
|
|
$(SRC)/Core/Util/BlockAllocator.cpp \
|
|
|
|
$(SRC)/Core/Util/ppge_atlas.cpp \
|
2013-03-02 22:27:46 +00:00
|
|
|
$(SRC)/Core/Util/PPGeDraw.cpp \
|
|
|
|
$(SRC)/git-version.cpp
|
2012-11-01 15:19:01 +00:00
|
|
|
|
2013-10-14 09:39:34 +00:00
|
|
|
# These are the files just for ppsspp_jni
|
|
|
|
LOCAL_MODULE := ppsspp_jni
|
|
|
|
LOCAL_SRC_FILES := \
|
|
|
|
$(EXEC_AND_LIB_FILES) \
|
|
|
|
$(SRC)/native/android/app-android.cpp \
|
2013-11-03 00:13:17 +00:00
|
|
|
$(SRC)/UI/DevScreens.cpp \
|
|
|
|
$(SRC)/UI/EmuScreen.cpp \
|
|
|
|
$(SRC)/UI/MainScreen.cpp \
|
|
|
|
$(SRC)/UI/MiscScreens.cpp \
|
2013-11-20 15:36:58 +00:00
|
|
|
$(SRC)/UI/Store.cpp \
|
2013-11-03 00:13:17 +00:00
|
|
|
$(SRC)/UI/UIShader.cpp \
|
|
|
|
$(SRC)/UI/GamepadEmu.cpp \
|
|
|
|
$(SRC)/UI/GameInfoCache.cpp \
|
|
|
|
$(SRC)/UI/GameScreen.cpp \
|
|
|
|
$(SRC)/UI/ControlMappingScreen.cpp \
|
|
|
|
$(SRC)/UI/GameSettingsScreen.cpp \
|
|
|
|
$(SRC)/UI/TiltAnalogSettingsScreen.cpp \
|
2013-11-11 11:52:04 +00:00
|
|
|
$(SRC)/UI/TiltEventProcessor.cpp \
|
2013-11-03 00:13:17 +00:00
|
|
|
$(SRC)/UI/TouchControlLayoutScreen.cpp \
|
|
|
|
$(SRC)/UI/TouchControlVisibilityScreen.cpp \
|
|
|
|
$(SRC)/UI/CwCheatScreen.cpp \
|
2013-12-05 13:14:15 +00:00
|
|
|
$(SRC)/UI/InstallZipScreen.cpp \
|
2013-10-14 09:39:34 +00:00
|
|
|
$(SRC)/UI/NativeApp.cpp
|
2012-11-01 15:19:01 +00:00
|
|
|
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|
|
|
|
|
2013-10-14 09:39:34 +00:00
|
|
|
|
|
|
|
ifeq ($(HEADLESS),1)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
include $(LOCAL_PATH)/Locals.mk
|
|
|
|
|
|
|
|
LOCAL_MODULE := ppsspp_headless
|
|
|
|
LOCAL_SRC_FILES := \
|
|
|
|
$(EXEC_AND_LIB_FILES) \
|
|
|
|
$(SRC)/headless/Headless.cpp \
|
|
|
|
$(SRC)/headless/Compare.cpp
|
|
|
|
|
|
|
|
include $(BUILD_EXECUTABLE)
|
|
|
|
endif
|
|
|
|
|
2012-11-01 15:19:01 +00:00
|
|
|
$(call import-module,libzip)
|
|
|
|
$(call import-module,native)
|
2013-03-02 23:33:07 +00:00
|
|
|
|
2013-11-03 00:13:17 +00:00
|
|
|
ifeq ($(ANDROID_NDK_PROFILER),1)
|
|
|
|
$(call import-module,android-ndk-profiler)
|
|
|
|
endif
|
|
|
|
|
2013-03-02 23:33:07 +00:00
|
|
|
jni/$(SRC)/git-version.cpp:
|
2013-03-10 17:28:08 +00:00
|
|
|
-./git-version-gen.sh
|
|
|
|
-..\Windows\git-version-gen.cmd
|
|
|
|
|
|
|
|
.PHONY: jni/$(SRC)/git-version.cpp
|