Skip to content

Commit

Permalink
am 2cc3527: libsuspend: compile as a static library
Browse files Browse the repository at this point in the history
* commit '2cc3527ae70138cc8a40d9ad6e92b98d81e44701':
  libsuspend: compile as a static library
  • Loading branch information
Iliyan Malchev authored and Android Git Automerger committed Dec 6, 2012
2 parents 7fd51b3 + 2cc3527 commit 76edb14
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion libsuspend/Android.mk
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ libsuspend_libraries := \
liblog libcutils

include $(CLEAR_VARS)

LOCAL_SRC_FILES := $(libsuspend_src_files)
LOCAL_MODULE := libsuspend
LOCAL_MODULE_TAGS := optional
Expand All @@ -21,3 +20,12 @@ LOCAL_C_INCLUDES += $(LOCAL_PATH)/include
LOCAL_SHARED_LIBRARIES := $(libsuspend_libraries)
#LOCAL_CFLAGS += -DLOG_NDEBUG=0
include $(BUILD_SHARED_LIBRARY)

include $(CLEAR_VARS)
LOCAL_SRC_FILES := $(libsuspend_src_files)
LOCAL_MODULE := libsuspend
LOCAL_MODULE_TAGS := optional
LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)/include
LOCAL_C_INCLUDES += $(LOCAL_PATH)/include
#LOCAL_CFLAGS += -DLOG_NDEBUG=0
include $(BUILD_STATIC_LIBRARY)

0 comments on commit 76edb14

Please sign in to comment.