diff options
author | Stephen Hines <srhines@google.com> | 2014-06-09 17:00:55 +0000 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2014-06-09 17:00:55 +0000 |
commit | 0c5f13c0c4499eaf42ab5e9e2ceabd4e20e36861 (patch) | |
tree | f4f29ff2e71102ee86111bc695830ae5850ec50c /utils/count/Android.mk | |
parent | dab1b938d421e45b63e9a46f2f2a389aac32c193 (diff) | |
parent | 0d041145196fef243311f50b9bf388c1a5263417 (diff) | |
download | external_llvm-0c5f13c0c4499eaf42ab5e9e2ceabd4e20e36861.zip external_llvm-0c5f13c0c4499eaf42ab5e9e2ceabd4e20e36861.tar.gz external_llvm-0c5f13c0c4499eaf42ab5e9e2ceabd4e20e36861.tar.bz2 |
am 0d041145: am 19c6fbb3: Merge "Adds the ability to run the llvm test suite in-tree."
* commit '0d041145196fef243311f50b9bf388c1a5263417':
Adds the ability to run the llvm test suite in-tree.
Diffstat (limited to 'utils/count/Android.mk')
-rw-r--r-- | utils/count/Android.mk | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/utils/count/Android.mk b/utils/count/Android.mk new file mode 100644 index 0000000..1ee8271 --- /dev/null +++ b/utils/count/Android.mk @@ -0,0 +1,26 @@ +LOCAL_PATH := $(call my-dir) + +LLVM_ROOT_PATH := $(LOCAL_PATH)/../.. + + +#===---------------------------------------------------------------=== +# count command line tool +#===---------------------------------------------------------------=== + +count_SRC_FILES := \ + count.c + +include $(CLEAR_VARS) + +LOCAL_MODULE := count +LOCAL_MODULE_TAGS := optional +LOCAL_MODULE_CLASS := EXECUTABLES +LOCAL_IS_HOST_MODULE := true + +LOCAL_SRC_FILES := $(count_SRC_FILES) + +LOCAL_LDLIBS += -lpthread -lm -ldl + +include $(LLVM_ROOT_PATH)/llvm.mk +include $(LLVM_HOST_BUILD_MK) +include $(BUILD_HOST_EXECUTABLE) |