Index: openacs-4/packages/acs-core-docs/www/xml/files/samplenote/Makefile =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-core-docs/www/xml/files/samplenote/Attic/Makefile,v diff -u -r1.1.2.2 -r1.1.2.3 --- openacs-4/packages/acs-core-docs/www/xml/files/samplenote/Makefile 7 Apr 2003 16:26:14 -0000 1.1.2.2 +++ openacs-4/packages/acs-core-docs/www/xml/files/samplenote/Makefile 9 May 2003 16:17:50 -0000 1.1.2.3 @@ -1,15 +1,18 @@ -# A very simple Makefile to generate the HTML docs +# A very simple Makefile to generate the HTML docs and copy any graphics +# Assumes that html should be generated into the parent directory +# of the current directory, which is named xml # Paths XSLTPROC=/usr/bin/xsltproc HTMLDOC=/usr/bin/htmldoc -XSL=../../../acs-core-docs/www/xml/openacs.xsl +XSL=../../acs-core-docs/www/xml/openacs.xsl +XMLFILE=xml/index.xml all: html prelim: cp -u *.png .. html: prelim - cd .. ; $(XSLTPROC) $(XSL) xml/index.xml + cd .. ; $(XSLTPROC) $(XSL) $(XMLFILE)