diff options
author | John Criswell <criswell@uiuc.edu> | 2003-10-17 17:47:08 +0000 |
---|---|---|
committer | John Criswell <criswell@uiuc.edu> | 2003-10-17 17:47:08 +0000 |
commit | 8a7ae306b2ea020089f7d4e739590be63e6d9c8b (patch) | |
tree | 1d765675f981762f9c1c20f52f8a7d0148e0dd61 /projects/sample | |
parent | 2d7721457a7587285c46f1543185cef93164457c (diff) |
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/sample')
-rw-r--r-- | projects/sample/tools/sample/Makefile | 3 |
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. |