• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Generate the libutdemo.so file
2LOCAL_PATH := $(call my-dir)
3
4include $(CLEAR_VARS)
5LOCAL_MODULE    := libUT
6LOCAL_SRC_FILES := ../../../../libut.so
7ifneq (,$(wildcard $(LOCAL_PATH)/$(LOCAL_SRC_FILES)))
8include $(PREBUILT_SHARED_LIBRARY)
9endif
10
11
12
13include $(CLEAR_VARS)
14
15#
16# Module Settings
17#
18LOCAL_MODULE := utDemo
19
20#
21# Source Files
22#
23
24LOCAL_SRC_FILES := \
25codec_unittest.cpp
26#
27# Header Includes
28#
29LOCAL_C_INCLUDES := \
30#
31# Compile Flags and Link Libraries
32#
33LOCAL_CFLAGS := -DANDROID_NDK
34
35LOCAL_LDLIBS := -llog
36LOCAL_SHARED_LIBRARIES := libUT
37
38include $(BUILD_SHARED_LIBRARY)
39