You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
420 B
23 lines
420 B
12 years ago
|
# Copyright 2006 The Android Open Source Project
|
||
|
|
||
|
LOCAL_PATH:= $(call my-dir)
|
||
|
include $(CLEAR_VARS)
|
||
|
LOCAL_MODULE_TAGS := optional
|
||
|
|
||
|
LOCAL_SRC_FILES:= \
|
||
|
secril-client-sap.cpp
|
||
|
|
||
|
LOCAL_SHARED_LIBRARIES := \
|
||
|
libutils \
|
||
|
libbinder \
|
||
|
libcutils \
|
||
|
libhardware_legacy
|
||
|
|
||
|
LOCAL_CFLAGS :=
|
||
|
|
||
|
LOCAL_MODULE:= libsecril-client-sap
|
||
|
LOCAL_PRELINK_MODULE := false
|
||
|
LOCAL_LDLIBS += -lpthread
|
||
|
|
||
|
include $(BUILD_SHARED_LIBRARY)
|