diff options
author | Kevin Rocard <kevinx.rocard@intel.com> | 2013-06-24 18:12:18 +0200 |
---|---|---|
committer | David Wagner <david.wagner@intel.com> | 2014-02-12 17:03:58 +0100 |
commit | 310c4993d94430dfaa790160c15785992131133a (patch) | |
tree | 60c98eb9c0e0deb6826d2b5ae8f0bd713cffd2dd /remote-process | |
parent | 413c3dfd41b74f222d9daae45608d2fe2039d643 (diff) | |
download | external_parameter-framework-310c4993d94430dfaa790160c15785992131133a.zip external_parameter-framework-310c4993d94430dfaa790160c15785992131133a.tar.gz external_parameter-framework-310c4993d94430dfaa790160c15785992131133a.tar.bz2 |
[Makefile] Format variables to lower_snake_case
BZ: 115743
Some variables where not formatted as requested by the coding style.
Format them to lower_snake_case.
Change-Id: I31c152f161cde469bcd4c00953e95274c60868ca
Signed-off-by: Kevin Rocard <kevinx.rocard@intel.com>
Reviewed-on: http://android.intel.com:8080/115175
Reviewed-by: Denneulin, Guillaume <guillaume.denneulin@intel.com>
Reviewed-by: De Chivre, Renaud <renaud.de.chivre@intel.com>
Tested-by: Dixon, CharlesX <charlesx.dixon@intel.com>
Reviewed-by: buildbot <buildbot@intel.com>
Tested-by: buildbot <buildbot@intel.com>
Diffstat (limited to 'remote-process')
-rw-r--r-- | remote-process/Android.mk | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/remote-process/Android.mk b/remote-process/Android.mk index b4502eb..dfa7e03 100644 --- a/remote-process/Android.mk +++ b/remote-process/Android.mk @@ -3,35 +3,35 @@ LOCAL_PATH := $(call my-dir) #################### # Common definitions -COMMON_SRC_FILES := \ +common_src_files := \ main.cpp -COMMON_MODULE := remote-process -COMMON_MODULE_TAGS := optional +common_module := remote-process +common_module_tags := optional -COMMON_C_INCLUDES := \ +common_c_includes := \ $(LOCAL_PATH)/../remote-processor/ -COMMON_SHARED_LIBRARIES := libremote-processor +common_shared_libraries := libremote-processor ############################# # Target build include $(CLEAR_VARS) -LOCAL_SRC_FILES := $(COMMON_SRC_FILES) +LOCAL_SRC_FILES := $(common_src_files) -LOCAL_MODULE := $(COMMON_MODULE) -LOCAL_MODULE_TAGS := $(COMMON_MODULE_TAGS) +LOCAL_MODULE := $(common_module) +LOCAL_MODULE_TAGS := $(common_module_tags) -LOCAL_CFLAGS += $(COMMON_CFLAGS) +LOCAL_CFLAGS += $(common_cflags) LOCAL_C_INCLUDES += \ - $(COMMON_C_INCLUDES) \ + $(common_c_includes) \ external/stlport/stlport/ \ bionic/ -LOCAL_SHARED_LIBRARIES := $(COMMON_SHARED_LIBRARIES) libstlport +LOCAL_SHARED_LIBRARIES := $(common_shared_libraries) libstlport include $(BUILD_EXECUTABLE) @@ -41,17 +41,17 @@ include $(BUILD_EXECUTABLE) include $(CLEAR_VARS) -LOCAL_SRC_FILES := $(COMMON_SRC_FILES) +LOCAL_SRC_FILES := $(common_src_files) -LOCAL_MODULE := $(COMMON_MODULE)_host -LOCAL_MODULE_TAGS := $(COMMON_MODULE_TAGS) +LOCAL_MODULE := $(common_module)_host +LOCAL_MODULE_TAGS := $(common_module_tags) -LOCAL_CFLAGS += $(COMMON_CFLAGS) +LOCAL_CFLAGS += $(common_cflags) LOCAL_C_INCLUDES += \ - $(COMMON_C_INCLUDES) + $(common_c_includes) -LOCAL_SHARED_LIBRARIES := $(foreach SHARED_LIBRARY,$(COMMON_SHARED_LIBRARIES), \ - $(SHARED_LIBRARY)_host) +LOCAL_SHARED_LIBRARIES := $(foreach shared_library, $(common_shared_libraries), \ + $(shared_library)_host) include $(BUILD_HOST_EXECUTABLE) |