summaryrefslogtreecommitdiff
path: root/tools/analyze
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2004-10-18 03:32:12 +0000
committerReid Spencer <rspencer@reidspencer.com>2004-10-18 03:32:12 +0000
commitf405d107d83d934f5c38ac41866695dd7efe527d (patch)
treebed50a8cd2b11d9266519ce19c3dd41cb18a9f52 /tools/analyze
parent0bade7e5e7915973257203f131f18a145702d62f (diff)
downloadllvm-f405d107d83d934f5c38ac41866695dd7efe527d.tar.gz
llvm-f405d107d83d934f5c38ac41866695dd7efe527d.tar.bz2
llvm-f405d107d83d934f5c38ac41866695dd7efe527d.tar.xz
Actually link all the analysis passes and their dependencies.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17114 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/analyze')
-rw-r--r--tools/analyze/Makefile.am7
1 files changed, 4 insertions, 3 deletions
diff --git a/tools/analyze/Makefile.am b/tools/analyze/Makefile.am
index b54c7b3cf7..5598a155c4 100644
--- a/tools/analyze/Makefile.am
+++ b/tools/analyze/Makefile.am
@@ -17,6 +17,7 @@ analyze_SOURCES = \
GraphPrinters.cpp
analyze_LDADD = \
- $(call GETOBJS,AsmParser,BCReader,Core) \
- $(call GETLIBS,Analysis,IPA,DataStructure,ScalarOpts,Transforms,Target) \
- $(call GETLIBS,ScalarOpts,TransformUtils,Support,System)
+ $(call GETOBJS,AsmParser,BCReader,Analysis,IPA,DataStructure,ScalarOpts) \
+ $(call GETLIBS,Transforms,Target,ScalarOpts,TransformUtils) \
+ $(call GETOBJS,Core) \
+ $(call GETLIBS,Support,System)