aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Bitcode
diff options
context:
space:
mode:
authorShih-wei Liao <sliao@google.com>2010-06-04 12:34:56 -0700
committerShih-wei Liao <sliao@google.com>2010-06-04 12:34:56 -0700
commit8a54f3e1f79c1e57e76a1cc53c6c5697374ea7b5 (patch)
tree9a9ff3c18a33cf3838b1e37813f7ef9fe64d2e78 /lib/Bitcode
parentee9f5c0a63197e6e3148f09b401f0056cdf1a179 (diff)
downloadexternal_llvm-8a54f3e1f79c1e57e76a1cc53c6c5697374ea7b5.tar.gz
external_llvm-8a54f3e1f79c1e57e76a1cc53c6c5697374ea7b5.tar.bz2
external_llvm-8a54f3e1f79c1e57e76a1cc53c6c5697374ea7b5.zip
Initial slang.
Change-Id: I4f84a741e5fbc440cd4c251406d2b611a237f713
Diffstat (limited to 'lib/Bitcode')
-rw-r--r--lib/Bitcode/Writer/Android.mk17
1 files changed, 17 insertions, 0 deletions
diff --git a/lib/Bitcode/Writer/Android.mk b/lib/Bitcode/Writer/Android.mk
new file mode 100644
index 0000000000..5147c4646d
--- /dev/null
+++ b/lib/Bitcode/Writer/Android.mk
@@ -0,0 +1,17 @@
+LOCAL_PATH:= $(call my-dir)
+
+# For the host only
+# =====================================================
+include $(CLEAR_VARS)
+
+LOCAL_SRC_FILES := \
+ BitWriter.cpp \
+ BitcodeWriter.cpp \
+ BitcodeWriterPass.cpp \
+ ValueEnumerator.cpp
+
+LOCAL_MODULE:= libLLVMBitWriter
+
+include $(LLVM_HOST_BUILD_MK)
+include $(LLVM_GEN_INTRINSICS_MK)
+include $(BUILD_HOST_STATIC_LIBRARY)