From 8a7ae306b2ea020089f7d4e739590be63e6d9c8b Mon Sep 17 00:00:00 2001 From: John Criswell Date: Fri, 17 Oct 2003 17:47:08 +0000 Subject: [PATCH] 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 --- projects/sample/tools/sample/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/projects/sample/tools/sample/Makefile b/projects/sample/tools/sample/Makefile index a6106ac4d2c..656ae629082 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. -- 2.34.1