Change & to & and master location

This commit is contained in:
appaji 2004-06-18 17:56:13 +00:00
parent 486c673b0b
commit 38cf634024
1 changed files with 11 additions and 7 deletions

View File

@ -177,8 +177,8 @@ $Id$
http://www.tldp.org/HOWTO/GNU-Build-System-HOWTO/</ulink>. The http://www.tldp.org/HOWTO/GNU-Build-System-HOWTO/</ulink>. The
latest in-progress version of this document is available at the latest in-progress version of this document is available at the
<ulink <ulink
url="http://www.appaji.net/interests/freedom-sw/gbsh.html"> url="http://www.appaji.net/resource/gbsh.html">GNU-Build-System
GNU-Build-System HOWTO home page</ulink>. HOWTO home page</ulink>.
</para> </para>
@ -266,7 +266,8 @@ $Id$
a developer in each stage of the configure, compile and distribute a developer in each stage of the configure, compile and distribute
process. Projects using the suite of the GBS are recognizable by process. Projects using the suite of the GBS are recognizable by
the ease with which they are installed. The ubiquitous the ease with which they are installed. The ubiquitous
<command>./configure && make && make install</command> does it all. <command>./configure &amp;&amp; make &amp;&amp; make
install</command> does it all.
</para> </para>
@ -277,9 +278,9 @@ $Id$
should help you understand the files that these tools operate on. should help you understand the files that these tools operate on.
The aim is to take the reader step by step, through the stages The aim is to take the reader step by step, through the stages
turning a set of source files of a <quote>project</quote> to conform turning a set of source files of a <quote>project</quote> to conform
to the <command>./configure && make && make install</command> to the <command>./configure &amp;&amp; make &amp;&amp; make
mantra. We will work through each of these components using a install</command> mantra. We will work through each of these
<literal>Hello World!</literal> styled example. components using a <literal>Hello World!</literal> styled example.
</para> </para>
@ -439,7 +440,7 @@ make: Nothing to be done for `all'.
</para> </para>
<screen> <screen>
&cmdline;<userinput>touch hello.c</userinput> &cmdline;<userinput>touch hello.h</userinput>
&cmdline;<userinput>make all</userinput> &cmdline;<userinput>make all</userinput>
gcc -Wall -c main.c gcc -Wall -c main.c
gcc -Wall -c hello.c gcc -Wall -c hello.c
@ -1898,6 +1899,9 @@ clean:
<!-- <!--
$Log$ $Log$
Revision 1.13 2004/04/25 10:08:36 appaji
Minor style changes
Revision 1.12 2004/04/24 13:26:07 appaji Revision 1.12 2004/04/24 13:26:07 appaji
Complete make basics + explain info in the reference links Complete make basics + explain info in the reference links