summaryrefslogtreecommitdiff
path: root/projects
diff options
context:
space:
mode:
authorJohn Criswell <criswell@uiuc.edu>2003-10-17 17:47:08 +0000
committerJohn Criswell <criswell@uiuc.edu>2003-10-17 17:47:08 +0000
commit8a7ae306b2ea020089f7d4e739590be63e6d9c8b (patch)
tree1d765675f981762f9c1c20f52f8a7d0148e0dd61 /projects
parent2d7721457a7587285c46f1543185cef93164457c (diff)
downloadllvm-8a7ae306b2ea020089f7d4e739590be63e6d9c8b.tar.gz
llvm-8a7ae306b2ea020089f7d4e739590be63e6d9c8b.tar.bz2
llvm-8a7ae306b2ea020089f7d4e739590be63e6d9c8b.tar.xz
Modified the Makefile so that the sample library is linked dynamically.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9194 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'projects')
-rw-r--r--projects/sample/tools/sample/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/projects/sample/tools/sample/Makefile b/projects/sample/tools/sample/Makefile
index a6106ac4d2..656ae62908 100644
--- a/projects/sample/tools/sample/Makefile
+++ b/projects/sample/tools/sample/Makefile
@@ -10,8 +10,9 @@ TOOLNAME=sample
#
# List libraries that we'll need
+# We use LIBS because sample is a dynamic library.
#
-USEDLIBS=sample
+LIBS+=-lsample
#
# Include Makefile.common so we know what to do.