From: John Criswell Date: Fri, 17 Oct 2003 17:47:08 +0000 (+0000) Subject: Modified the Makefile so that the sample library is linked dynamically. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=8a7ae306b2ea020089f7d4e739590be63e6d9c8b;p=oota-llvm.git 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 --- 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.