Update of /cvsroot/phpslash/phpslash-ft/doc/html
In directory usw-pr-cvs1:/tmp/cvs-serv1973/doc/html
Added Files:
Makefile
Removed Files:
phpslash-1.html phpslash-2.html phpslash-3.html
phpslash-4.html phpslash-5.html phpslash-6.html
phpslash-7.html phpslash-8.html phpslash.html
Log Message:
Adding Makefile for doc autogeneration
--- NEW FILE: Makefile ---
#
# $Id: Makefile,v 1.1 2001/11/23 16:29:23 nhruby Exp $
# phpSlash Documentation Makefile
# nathan hruby <nh...@ds...>
# It's wise to note that the rules in this Makefile will *allways*
# evaluate to TURE, and therefore be "made" becasue the targets of the
# rules do not exsist in the filesystem. Thus entering "make" for
# anything will result in it being remade fromt he SGML source
# Location/name of master file
master = phpslash.sgml
# Make all the docs
all : clean check longhtml html txt
check : $(master)
@echo "----------- Checking SGML Source"
sgmlcheck $(master)
# Make one big html file of stuff
longhtml : $(master)
@echo "----------- Making single page HTML doc from SGML in single/"
cp $(master) single/
cd single ; sgml2html -s 0 $(master) ; cd ../
rm single/$(master)
# Make seperate html files
html : $(master)
@echo "----------- Making multi page HTML doc from SGML"
sgml2html -s 1 $(master)
# Make a text version too
txt : $(master)
@echo "----------- Making single page text docs from SGML"
sgml2txt $(master)
clean :
@echo "----------- Removing all generated docs"
rm -f *.html *.txt single/*
--- phpslash-1.html DELETED ---
--- phpslash-2.html DELETED ---
--- phpslash-3.html DELETED ---
--- phpslash-4.html DELETED ---
--- phpslash-5.html DELETED ---
--- phpslash-6.html DELETED ---
--- phpslash-7.html DELETED ---
--- phpslash-8.html DELETED ---
--- phpslash.html DELETED ---
|