aboutsummaryrefslogtreecommitdiffstats
path: root/utils/FileUpdate
diff options
context:
space:
mode:
authorStephen Hines <srhines@google.com>2014-06-09 17:00:55 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2014-06-09 17:00:55 +0000
commit0c5f13c0c4499eaf42ab5e9e2ceabd4e20e36861 (patch)
treef4f29ff2e71102ee86111bc695830ae5850ec50c /utils/FileUpdate
parentdab1b938d421e45b63e9a46f2f2a389aac32c193 (diff)
parent0d041145196fef243311f50b9bf388c1a5263417 (diff)
downloadexternal_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/FileUpdate')
-rw-r--r--utils/FileUpdate/Android.mk33
1 files changed, 33 insertions, 0 deletions
diff --git a/utils/FileUpdate/Android.mk b/utils/FileUpdate/Android.mk
new file mode 100644
index 0000000..d2b82f2
--- /dev/null
+++ b/utils/FileUpdate/Android.mk
@@ -0,0 +1,33 @@
+LOCAL_PATH := $(call my-dir)
+
+LLVM_ROOT_PATH := $(LOCAL_PATH)/../..
+
+
+#===---------------------------------------------------------------===
+# FileUpdate command line tool
+#===---------------------------------------------------------------===
+
+file_update_SRC_FILES := \
+ FileUpdate.cpp
+
+file_update_STATIC_LIBRARIES := \
+ libLLVMCore \
+ libLLVMSupport \
+
+include $(CLEAR_VARS)
+
+LOCAL_MODULE := FileUpdate
+LOCAL_MODULE_TAGS := optional
+LOCAL_MODULE_CLASS := EXECUTABLES
+LOCAL_IS_HOST_MODULE := true
+
+LOCAL_SRC_FILES := $(file_update_SRC_FILES)
+
+LOCAL_STATIC_LIBRARIES := $(file_update_STATIC_LIBRARIES)
+
+LOCAL_LDLIBS += -lpthread -lm -ldl
+
+include $(LLVM_ROOT_PATH)/llvm.mk
+include $(LLVM_HOST_BUILD_MK)
+include $(LLVM_GEN_INTRINSICS_MK)
+include $(BUILD_HOST_EXECUTABLE)