summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-07-23 17:52:24 +0000
committerChris Lattner <sabre@nondot.org>2002-07-23 17:52:24 +0000
commitf78a824b3c155f78abbf646da486fda866b4cca6 (patch)
tree3664c879dcce023ac899b7150b0667a14a727461
parent40ac148c1d31ef156a9626eed5cff593bbc41490 (diff)
downloadllvm-f78a824b3c155f78abbf646da486fda866b4cca6.tar.gz
llvm-f78a824b3c155f78abbf646da486fda866b4cca6.tar.bz2
llvm-f78a824b3c155f78abbf646da486fda866b4cca6.tar.xz
Convert over to new style makefile where libraries by default build .o files
unless they specify BUILD_ARCHIVE to also build a .a file. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3001 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Analysis/Makefile4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/Analysis/Makefile b/lib/Analysis/Makefile
index bbf1238703..6168140831 100644
--- a/lib/Analysis/Makefile
+++ b/lib/Analysis/Makefile
@@ -1,9 +1,7 @@
-
LEVEL = ../..
-
LIBRARYNAME = analysis
-
DIRS = LiveVar IPA DataStructure
+BUILD_ARCHIVE = 1
include $(LEVEL)/Makefile.common