Date: Sun, 20 May 2012 03:43:43 +0000 (UTC) From: Warren Block <wblock@FreeBSD.org> To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r38845 - head/en_US.ISO8859-1/books/fdp-primer/doc-build Message-ID: <201205200343.q4K3hiib064401@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: wblock Date: Sun May 20 03:43:43 2012 New Revision: 38845 URL: http://svn.freebsd.org/changeset/doc/38845 Log: Whitespace-only changes, wrap long lines and fix indents. Translators, please ignore. Modified: head/en_US.ISO8859-1/books/fdp-primer/doc-build/chapter.sgml Modified: head/en_US.ISO8859-1/books/fdp-primer/doc-build/chapter.sgml ============================================================================== --- head/en_US.ISO8859-1/books/fdp-primer/doc-build/chapter.sgml Sun May 20 03:40:37 2012 (r38844) +++ head/en_US.ISO8859-1/books/fdp-primer/doc-build/chapter.sgml Sun May 20 03:43:43 2012 (r38845) @@ -105,7 +105,9 @@ </sect1> <sect1 id="doc-build-makefiles"> - <title>Understanding <filename>Makefile</filename>s in the Documentation Tree</title> + + <title>Understanding <filename>Makefile</filename>s in the + Documentation Tree</title> <para>There are three main types of <filename>Makefile</filename>s in the FreeBSD Documentation Project tree.</para> @@ -248,7 +250,8 @@ DOC_PREFIX?= ${.CURDIR}/../../.. </sect1> <sect1 id="make-includes"> - <title>FreeBSD Documentation Project <application>Make</application> Includes</title> + <title>FreeBSD Documentation Project + <application>Make</application> Includes</title> <para>This is best explained by inspection of the code. Here are the system include files:</para> @@ -397,7 +400,7 @@ PRI_LANG?= en_US.ISO8859-1 <para>A special dependency <literal>.USE</literal> defines the equivalent of a macro.</para> -<programlisting>_SUBDIRUSE: .USE + <programlisting>_SUBDIRUSE: .USE .for entry in ${SUBDIR} @${ECHO} "===> ${DIRPRFX}${entry}" @(cd ${.CURDIR}/${entry} && \ @@ -416,7 +419,7 @@ PRI_LANG?= en_US.ISO8859-1 contains the name of the target currently being built.</para> -<programlisting>clean: _SUBDIRUSE + <programlisting>clean: _SUBDIRUSE rm -f ${CLEANFILES}</programlisting> <para>In the above, <maketarget>clean</maketarget> will use @@ -476,14 +479,15 @@ PRI_LANG?= en_US.ISO8859-1 </sect3> <sect3> - <title>Looping Constructs in <command>make (.for)</command></title> + <title>Looping Constructs in <command>make + (.for)</command></title> <para><literal>.for</literal> provides a way to repeat a set of instructions for each space-separated element in a variable. It does this by assigning a variable to contain the current element in the list being examined.</para> -<programlisting>_SUBDIRUSE: .USE + <programlisting>_SUBDIRUSE: .USE .for entry in ${SUBDIR} @${ECHO} "===> ${DIRPRFX}${entry}" @(cd ${.CURDIR}/${entry} && \
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201205200343.q4K3hiib064401>