summaryrefslogtreecommitdiff
path: root/tools/Makefile
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-09-08 18:08:50 +0000
committerChris Lattner <sabre@nondot.org>2006-09-08 18:08:50 +0000
commit70c3537a9244f6095bbcde10a90791604560a2d8 (patch)
tree636f1e68f757eb091a42e669007c70dfc7a5ef18 /tools/Makefile
parent294492b25f9a953e9210e4e1a23465e1b599fef8 (diff)
downloadllvm-70c3537a9244f6095bbcde10a90791604560a2d8.tar.gz
llvm-70c3537a9244f6095bbcde10a90791604560a2d8.tar.bz2
llvm-70c3537a9244f6095bbcde10a90791604560a2d8.tar.xz
Need to include Makefile.config to get the value of $(OS). Add a comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30193 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/Makefile')
-rw-r--r--tools/Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/Makefile b/tools/Makefile
index 56f17d8eee..6a1ad5eb4e 100644
--- a/tools/Makefile
+++ b/tools/Makefile
@@ -19,6 +19,10 @@ PARALLEL_DIRS := llvm-config \
gccas llvm-bcanalyzer llvm-stub \
gccld llvm2cpp \
llvm-ld llvmc llvm-prof
+
+include $(LEVEL)/Makefile.common
+
+# Disable liblto on non-darwin platforms right now until LLVM is built PIC.
ifeq ($(OS), Darwin)
PARALLEL_DIRS += lto
endif