svn commit: r288161 - head/share/mk

Bryan Drewery bdrewery at FreeBSD.org
Thu Sep 24 00:20:35 UTC 2015


Author: bdrewery
Date: Thu Sep 24 00:20:34 2015
New Revision: 288161
URL: https://svnweb.freebsd.org/changeset/base/288161

Log:
  Add very basic LIBADD documentation.
  
  Sponsored by:	EMC / Isilon Storage Division

Modified:
  head/share/mk/bsd.README

Modified: head/share/mk/bsd.README
==============================================================================
--- head/share/mk/bsd.README	Thu Sep 24 00:17:00 2015	(r288160)
+++ head/share/mk/bsd.README	Thu Sep 24 00:20:34 2015	(r288161)
@@ -270,6 +270,9 @@ LDADD		Additional loader objects.  Usual
 
 			LDADD=-lutil -lcompat
 
+LIBADD		Additional libraries.  This is for base system libraries.
+		Rather than use LDADD=-lname use LIBADD=name.
+
 LDFLAGS		Additional loader flags. Passed to the loader via CC,
 		since that's used to link programs as well, so loader
 		specific flags need to be prefixed with -Wl, to work.
@@ -408,6 +411,9 @@ LIBMODE		Library mode.
 
 LDADD		Additional loader objects.
 
+LIBADD		Additional libraries.  This is for base system libraries.
+		Rather than use LDADD=-lname use LIBADD=name.
+
 MAN		The manual pages to be installed (use a .1 - .9 suffix).
 
 SRCS		List of source files to build the library.  Suffix types


More information about the svn-src-all mailing list