-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAndroid.mk
More file actions
22 lines (19 loc) · 890 Bytes
/
Copy pathAndroid.mk
File metadata and controls
22 lines (19 loc) · 890 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Defines the root to all other relative paths
# The macro function my-dir, provided by the build system,
# specifies the path of the current directory (i.e. the
# directory containing the Android.mk file itself)
LOCAL_PATH := $(call my-dir)
#LOCAL_LDLIBS := -llog
# Clear all LOCAL_XXX variables with the exception of
# LOCAL_PATH (this is needed because all variables are global)
include $(CLEAR_VARS)
# List all of our C/C++ files to be compiled (header file
# dependencies are automatically computed)
LOCAL_SRC_FILES := com_android_mfccnative_mfcc.c
# The name of our shared module (this name will be prepended
# by lib and postfixed by .so)
LOCAL_MODULE := com_android_mfccnative_mfcc
# Collects all LOCAL_XXX variables since "include $(CLEAR_VARS)"
# and determines what to build (in this case a shared library)
#include $(BUILD_STATIC_LIBRARY)
include $(BUILD_SHARED_LIBRARY)