Modified the Makefile so that the sample library is linked dynamically.
authorJohn Criswell <criswell@uiuc.edu>
Fri, 17 Oct 2003 17:47:08 +0000 (17:47 +0000)
committerJohn Criswell <criswell@uiuc.edu>
Fri, 17 Oct 2003 17:47:08 +0000 (17:47 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9194 91177308-0d34-0410-b5e6-96231b3b80d8

projects/sample/tools/sample/Makefile

index a6106ac4d2c9d2ed1b9b08146c664a36eb2c3465..656ae6290821bdd46b02d6c7e5071f1b9c464732 100644 (file)
@@ -10,8 +10,9 @@ TOOLNAME=sample
 
 #
 # List libraries that we'll need
 
 #
 # 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.
 
 #
 # Include Makefile.common so we know what to do.