[llvm-commits] CVS: llvm/projects/sample/tools/sample/Makefile
John Criswell
criswell at cs.uiuc.edu
Fri Oct 17 12:48:02 PDT 2003
Changes in directory llvm/projects/sample/tools/sample:
Makefile updated: 1.2 -> 1.3
---
Log message:
Modified the Makefile so that the sample library is linked dynamically.
---
Diffs of the changes: (+2 -1)
Index: llvm/projects/sample/tools/sample/Makefile
diff -u llvm/projects/sample/tools/sample/Makefile:1.2 llvm/projects/sample/tools/sample/Makefile:1.3
--- llvm/projects/sample/tools/sample/Makefile:1.2 Mon Jun 30 17:13:48 2003
+++ llvm/projects/sample/tools/sample/Makefile Fri Oct 17 12:47:08 2003
@@ -10,8 +10,9 @@
#
# 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.
More information about the llvm-commits
mailing list