aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-03-06 18:44:29 +0000
committerChris Lattner <sabre@nondot.org>2002-03-06 18:44:29 +0000
commit71e7bb4bc0432c600401a88754978ccb4d6e0abd (patch)
tree989af27a19d5d57d079cff6d8f0beed616b507ce
parentcabc17a293dc1dba30e8d291ebe28c2447b02a15 (diff)
Pull interprocedural analyses out of Analysis library into their own lib
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1827 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Analysis/Makefile2
-rw-r--r--tools/analyze/Makefile2
-rw-r--r--tools/gccas/Makefile2
-rw-r--r--tools/opt/Makefile2
4 files changed, 4 insertions, 4 deletions
diff --git a/lib/Analysis/Makefile b/lib/Analysis/Makefile
index 3979709be8..69359afb8f 100644
--- a/lib/Analysis/Makefile
+++ b/lib/Analysis/Makefile
@@ -3,7 +3,7 @@ LEVEL = ../..
LIBRARYNAME = analysis
-DIRS = LiveVar
+DIRS = LiveVar IPA
include $(LEVEL)/Makefile.common
diff --git a/tools/analyze/Makefile b/tools/analyze/Makefile
index ebf137a61e..6dfdc3dd4d 100644
--- a/tools/analyze/Makefile
+++ b/tools/analyze/Makefile
@@ -1,6 +1,6 @@
LEVEL = ../..
TOOLNAME = analyze
-USEDLIBS = analysis asmparser bcreader asmwriter scalaropts vmcore analysis transforms support
+USEDLIBS = analysis asmparser bcreader asmwriter scalaropts vmcore analysis ipa transforms support
include $(LEVEL)/Makefile.common
diff --git a/tools/gccas/Makefile b/tools/gccas/Makefile
index 633e8103e4..144f9cbe42 100644
--- a/tools/gccas/Makefile
+++ b/tools/gccas/Makefile
@@ -1,6 +1,6 @@
LEVEL = ../..
TOOLNAME = gccas
-USEDLIBS = asmparser bcwriter transforms scalaropts target analysis transforms vmcore asmwriter support
+USEDLIBS = asmparser bcwriter transforms scalaropts target analysis transforms ipa vmcore asmwriter support
include $(LEVEL)/Makefile.common
diff --git a/tools/opt/Makefile b/tools/opt/Makefile
index f30a0094d6..073cc0e527 100644
--- a/tools/opt/Makefile
+++ b/tools/opt/Makefile
@@ -1,7 +1,7 @@
LEVEL = ../..
TOOLNAME = opt
USEDLIBS = bcreader bcwriter asmwriter instrument profpaths scalaropts \
- ipo target analysis transforms vmcore support
+ ipo ipa target analysis transforms vmcore support
include $(LEVEL)/Makefile.common