diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-10-27 23:18:45 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-10-27 23:18:45 +0000 |
commit | 6cb21d443eff9369e4f9035af28efd627e8f3909 (patch) | |
tree | c4c0cdb6f9862bec1dd6df8f2c33b865a2f11cac /lib/Transforms | |
parent | af362fc492bf0bfc6e43e3025621834ea031a29e (diff) |
Change Library Names Not To Conflict With Others When Installed
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17286 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms')
-rw-r--r-- | lib/Transforms/Hello/Makefile | 2 | ||||
-rw-r--r-- | lib/Transforms/IPO/Makefile | 2 | ||||
-rw-r--r-- | lib/Transforms/Instrumentation/Makefile | 2 | ||||
-rw-r--r-- | lib/Transforms/Instrumentation/ProfilePaths/Makefile | 2 | ||||
-rw-r--r-- | lib/Transforms/Makefile | 2 | ||||
-rw-r--r-- | lib/Transforms/Scalar/Makefile | 2 | ||||
-rw-r--r-- | lib/Transforms/Utils/Makefile | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/lib/Transforms/Hello/Makefile b/lib/Transforms/Hello/Makefile index af4253d1d1..d9886a95e5 100644 --- a/lib/Transforms/Hello/Makefile +++ b/lib/Transforms/Hello/Makefile @@ -8,7 +8,7 @@ ##===----------------------------------------------------------------------===## LEVEL = ../../.. -LIBRARYNAME = hello +LIBRARYNAME = LLVMHello SHARED_LIBRARY = 1 include $(LEVEL)/Makefile.common diff --git a/lib/Transforms/IPO/Makefile b/lib/Transforms/IPO/Makefile index fe82fc11fa..4f4563f18c 100644 --- a/lib/Transforms/IPO/Makefile +++ b/lib/Transforms/IPO/Makefile @@ -7,7 +7,7 @@ # ##===----------------------------------------------------------------------===## LEVEL = ../../.. -LIBRARYNAME = ipo +LIBRARYNAME = LLVMipo BUILD_ARCHIVE = 1 include $(LEVEL)/Makefile.common diff --git a/lib/Transforms/Instrumentation/Makefile b/lib/Transforms/Instrumentation/Makefile index e1831afab6..d749b6b3bd 100644 --- a/lib/Transforms/Instrumentation/Makefile +++ b/lib/Transforms/Instrumentation/Makefile @@ -7,7 +7,7 @@ # ##===----------------------------------------------------------------------===## LEVEL = ../../.. -LIBRARYNAME = instrument +LIBRARYNAME = LLVMInstrumentation PARALLEL_DIRS = ProfilePaths BUILD_ARCHIVE = 1 diff --git a/lib/Transforms/Instrumentation/ProfilePaths/Makefile b/lib/Transforms/Instrumentation/ProfilePaths/Makefile index 8deeeac814..5a7477caf3 100644 --- a/lib/Transforms/Instrumentation/ProfilePaths/Makefile +++ b/lib/Transforms/Instrumentation/ProfilePaths/Makefile @@ -7,7 +7,7 @@ # ##===----------------------------------------------------------------------===## LEVEL = ../../../.. -LIBRARYNAME = profpaths +LIBRARYNAME = LLVMProfilePaths include $(LEVEL)/Makefile.common diff --git a/lib/Transforms/Makefile b/lib/Transforms/Makefile index 88a2ca222f..25cee595fd 100644 --- a/lib/Transforms/Makefile +++ b/lib/Transforms/Makefile @@ -8,7 +8,7 @@ ##===----------------------------------------------------------------------===## LEVEL = ../.. PARALLEL_DIRS = Utils Instrumentation Scalar IPO -LIBRARYNAME = transforms +LIBRARYNAME = LLVMTransforms BUILD_ARCHIVE = 1 include $(LEVEL)/Makefile.common diff --git a/lib/Transforms/Scalar/Makefile b/lib/Transforms/Scalar/Makefile index 6ea90d178c..267747f57b 100644 --- a/lib/Transforms/Scalar/Makefile +++ b/lib/Transforms/Scalar/Makefile @@ -7,7 +7,7 @@ # ##===----------------------------------------------------------------------===## LEVEL = ../../.. -LIBRARYNAME = scalaropts +LIBRARYNAME = LLVMScalarOpts BUILD_ARCHIVE = 1 include $(LEVEL)/Makefile.common diff --git a/lib/Transforms/Utils/Makefile b/lib/Transforms/Utils/Makefile index f4da9832fd..b349b6c5c5 100644 --- a/lib/Transforms/Utils/Makefile +++ b/lib/Transforms/Utils/Makefile @@ -7,7 +7,7 @@ # ##===----------------------------------------------------------------------===## LEVEL = ../../.. -LIBRARYNAME = transformutils +LIBRARYNAME = LLVMTransformUtils BUILD_ARCHIVE = 1 include $(LEVEL)/Makefile.common |