<html>
<head>
<style><!--
body {background-color:#ffffff;}
.file {border:1px solid #eeeeee;margin-top:1em;margin-bottom:1em;}
.pathname {font-family:monospace; float:right;}
.fileheader {margin-bottom:.5em;}
.diff {margin:0;}
.tasklist {padding:4px;border:1px dashed #000000;margin-top:1em;}
.tasklist ul {margin-top:0;margin-bottom:0;}
tr.alt {background-color:#eeeeee}
#added {background-color:#ddffdd;}
#addedchars {background-color:#99ff99;font-weight:bolder;}
tr.alt #added {background-color:#ccf7cc;}
#removed {background-color:#ffdddd;}
#removedchars {background-color:#ff9999;font-weight:bolder;}
tr.alt #removed {background-color:#f7cccc;}
#info {color:#888888;}
#context {background-color:#eeeeee;}
td {padding-left:.3em;padding-right:.3em;}
tr.head {border-bottom-width:1px;border-bottom-style:solid;}
tr.head td {padding:0;padding-top:.2em;}
.task {background-color:#ffff00;}
.comment {padding:4px;border:1px dashed #000000;background-color:#ffffdd}
.error {color:red;}
hr {border-width:0px;height:2px;background:black;}
--></style>
</head>
<body>
<table cellspacing="0" cellpadding="0" border="0" rules="cols">
<tr class="head"><td colspan="4">Commit in <b><tt>phpslash-dev/doc/html</tt></b><span id="info"> on MAIN</span></td></tr>
<tr><td><tt><a href="#file1">Makefile</a></tt></td><td align="right" id="added">+11</td><td align="right" id="removed">-10</td><td nowrap="nowrap" align="center">1.6 -> 1.7</td></tr>
</table>
<pre class="comment">
fixed targets to create dirs before attempting certain rules
</pre>
<hr /><a name="file1" /><div class="file">
<span class="pathname">phpslash-dev/doc/html<br /></span>
<div class="fileheader"><big><b>Makefile</b></big> <small id="info">1.6 -> 1.7</small></div>
<pre class="diff"><small id="info">diff -u -r1.6 -r1.7
--- Makefile 23 Nov 2004 22:13:04 -0000 1.6
+++ Makefile 24 Nov 2004 18:04:33 -0000 1.7
@@ -1,5 +1,5 @@
</small></pre><pre class="diff" id="context"> #
</pre><pre class="diff" id="removed">-# $Id: Makefile,v 1.6 2004/11/23 22:13:04 lems1 Exp $
</pre><pre class="diff" id="added">+# $Id: Makefile,v 1.7 2004/11/24 18:04:33 lems1 Exp $
</pre><pre class="diff" id="context">
# phpSlash Documentation Makefile
# nathan hruby <nh...@ds...>
</pre><pre class="diff"><small id="info">@@ -12,7 +12,7 @@
</small></pre><pre class="diff" id="context"> # Location/name of master file
master = *.sgml
</pre><pre class="diff" id="removed">-# Make all the docs
</pre><pre class="diff" id="added">+# Make all the docs (pdf last target purposely)
</pre><pre class="diff" id="context"> all : clean check onehtml html txt pdf
check : $(master)
</pre><pre class="diff"><small id="info">@@ -27,7 +27,6 @@
</small></pre><pre class="diff" id="context"> # rm single/$(master)
# sgml2html -s 0 $(master)
linuxdoc -B html -s 0 $(master)
</pre><pre class="diff" id="removed">- mkdir single
</pre><pre class="diff" id="context"> mv *.html single/
# Make separate html files
</pre><pre class="diff"><small id="info">@@ -35,14 +34,12 @@
</small></pre><pre class="diff" id="context"> @echo "----------- Making multi page HTML doc from SGML"
linuxdoc -B html -s 1 $(master)
# sgml2html -s 1 $(master)
</pre><pre class="diff" id="removed">- mkdir html
- mv *.html html/
</pre><pre class="diff" id="added">+ mv *.html html-multi/
</pre><pre class="diff" id="context">
rtf : $(master) dirs
@echo "----------- Making single page RTF doc from SGML in single/"
sgml2rtf $(master)
# linuxdoc -B rtf $(master)
</pre><pre class="diff" id="removed">- mkdir single
</pre><pre class="diff" id="context"> mv *.rtf single/
pdf : $(master) dirs
</pre><pre class="diff"><small id="info">@@ -50,7 +47,9 @@
</small></pre><pre class="diff" id="context"> # cp $(master) single/
# cd single ; sgml2html -s 0 $(master) ; cd ../
# rm single/$(master)
</pre><pre class="diff" id="removed">- linuxdoc -B latex -o pdf $(master)<span id="removedchars"> </span>
</pre><pre class="diff" id="added">+ linuxdoc -B latex -o pdf $(master)
+ # sgml2latex $(master)
+ # dvipdf *.dvi
</pre><pre class="diff" id="context"> mv *.pdf single/
# Make a text version too
</pre><pre class="diff"><small id="info">@@ -61,10 +60,12 @@
</small></pre><pre class="diff" id="context"> mv *.txt single/
dirs:
</pre><pre class="diff" id="removed">- if [ ! -d html ]; then mkdir html; fi
- if [ ! -d single ]; then mkdir single; fi
</pre><pre class="diff" id="added">+ if [ ! -d "html-multi" ]; then mkdir html-multi; fi
+ if [ ! -d "single" ]; then mkdir single; fi
</pre><pre class="diff" id="context">
clean :
@echo "----------- Removing all generated docs"
</pre><pre class="diff" id="removed">- rm -fr *.html single/ html/
</pre><pre class="diff" id="added">+ rm -fr *.html single/ html/<span id="addedchars"> html-multi/</span>
+
+.PHONY: dist clean check onehtml html txt pdf
</pre><pre class="diff" id="context">
</pre></div>
<center><small><a href="http://www.badgers-in-foil.co.uk/projects/cvsspam/" title="commit -> email">CVSspam</a> 0.2.10</small></center>
</body></html>
|