Sophie

Sophie

distrib > Mandriva > 9.1 > ppc > by-pkgid > 4c5ac34ae216fba9ec8a3daf3843b641 > files > 18

docbook-website-2.3-2mdk.noarch.rpm

<!DOCTYPE webpage SYSTEM "../website.dtd">
<webpage id="buildmake">
<config param="desc" value="Building with Make"/>
<config param="rcsdate" value="$Date: 2002/09/16 13:21:42 $"/>
<head>
<title>Building with Make</title>
<titleabbrev>Using Make</titleabbrev>
<summary>Building with Make</summary>
</head>

<para>The following instructions work with recent versions of GNU Make;
you may have to tweak them a bit if you're using some other version of
<command>make</command>.
</para>

<orderedlist>
<listitem><para>Create your webpages and your <filename>layout.xml</filename>
file.</para></listitem>

<listitem><para>Create a skeletal <filename>Makefile</filename> like this:
</para>

<programlisting><![CDATA[PROC=xslproc
STYLEDIR=../xsl
TABSTYLE=$(STYLEDIR)/tabular.xsl
STYLESHEET=$(TABSTYLE)

# Note: you must set the autolayout-file to a fully qualified path!
STYLEOPT="autolayout-file=/full/path/to/autolayout.xml"

.PHONY : clean

all:
	make website

include depends.tabular

autolayout.xml: layout.xml
	$(PROC) $< $(STYLEDIR)/autolayout.xsl $@
	make depends

%.html: autolayout.xml
	$(PROC) $(filter-out autolayout.xml,$^) $(STYLESHEET) $@ $(STYLEOPT)

depends: autolayout.xml
	$(PROC) $< ../xsl/makefile-dep.xsl depends.tabular
]]></programlisting>

<para>You'll have to change the <literal>PROC</literal> setting and
the command-lines used to run the processor.</para>
</listitem>

<listitem><para>Create an empty file called
<filename>depends.tabular</filename>.
</para></listitem>

<listitem><para>Run <command>make depends</command>.
</para></listitem>

<listitem><para>Run <command>make</command>. That should build your
website.
</para></listitem>
</orderedlist>

</webpage>