From: Andre P. <at...@us...> - 2004-05-19 07:32:19
|
Update of /cvsroot/hoc/hoc/docs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1181 Modified Files: Makefile.in Log Message: Added 'documentation.html' target (for online docs on hoc website) Index: Makefile.in =================================================================== RCS file: /cvsroot/hoc/hoc/docs/Makefile.in,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- Makefile.in 18 May 2004 03:27:31 -0000 1.5 +++ Makefile.in 19 May 2004 07:32:08 -0000 1.6 @@ -40,6 +40,12 @@ --outfile "$@" \ $+ +# documentation.html is similar to HOC.html, but without the <body> tags +# (suitable for inclusion into a SSI'ed webpage) + +documentation.html: HOC.html + sed -e '1,/^<body.*>$$/d' -e '/^<\/body>.*$$/,$$d' < $+ > $@ + view: HOC.html open $+ @@ -49,5 +55,5 @@ true clean: - -rm HOC.html pod2htm* + -rm HOC.html pod2htm* documentation.html |