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 | b9c70bb65398b5bf2df58ad7855234665064b656 (patch) | |
tree | b64f1b6caacb02a705c7a5e1889d6cae4361a857 /llvm/projects/sample | |
parent | 1a1a6119da92e9a0b586559b664e3faee5e5d9bd (diff) | |
download | bcm5719-llvm-b9c70bb65398b5bf2df58ad7855234665064b656.tar.gz bcm5719-llvm-b9c70bb65398b5bf2df58ad7855234665064b656.zip |
Modified the Makefile so that the sample library is linked dynamically.
llvm-svn: 9194
Diffstat (limited to 'llvm/projects/sample')
-rw-r--r-- | llvm/projects/sample/tools/sample/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/projects/sample/tools/sample/Makefile b/llvm/projects/sample/tools/sample/Makefile index a6106ac4d2c..656ae629082 100644 --- a/llvm/projects/sample/tools/sample/Makefile +++ b/llvm/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. |