[Phpslash-commit] CVS: phpslash-dev/doc/html Makefile,1.2,1.3
Brought to you by:
joestewart,
nhruby
From: Joe S. <joe...@us...> - 2004-11-11 19:35:32
|
Update of /cvsroot/phpslash/phpslash-dev/doc/html In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26474/phpslash-dev/doc/html Modified Files: Makefile Log Message: added pdf documentation Index: Makefile =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/doc/html/Makefile,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Makefile 13 Nov 2003 20:10:02 -0000 1.2 --- Makefile 11 Nov 2004 19:35:23 -0000 1.3 *************** *** 13,26 **** master = *.sgml - # new single command approach - COMMAND=sgmltools --backend= - # Make all the docs ! all : clean check onehtml html txt rtf pdf check : $(master) @echo "----------- Checking SGML Source" ! # sgmlcheck $(master) ! # $(COMMAND)$@ $(master) # Make one big html file of stuff --- 13,22 ---- master = *.sgml # Make all the docs ! all : clean check onehtml html txt pdf check : $(master) @echo "----------- Checking SGML Source" ! sgmlcheck $(master) # Make one big html file of stuff *************** *** 30,62 **** # cd single ; sgml2html -s 0 $(master) ; cd ../ # rm single/$(master) ! # sgml2html -s 0 $(master) ! $(COMMAND)$@ $(master) mv *.html single/ # Make separate html files html : $(master) ! @echo "----------- Making multi page HTML doc from SGML in subdirectory" # sgml2html -s 1 $(master) ! $(COMMAND)$@ $(master) # Make a text version too txt : $(master) @echo "----------- Making single page text docs from SGML in single/" # sgml2txt $(master) ! $(COMMAND)$@ $(master) mv *.txt single/ - # Make a rtf version too - rtf : $(master) - @echo "----------- Making single page rtf docs from SGML in single/" - # sgml2txt $(master) - $(COMMAND)$@ $(master) - mv *.rtf single/ - # Make a rtf version too - pdf : $(master) - @echo "----------- Making single page rtf docs from SGML in single/" - # sgml2txt $(master) - $(COMMAND)ps $(master) - # mv *.pdf single/ clean : @echo "----------- Removing all generated docs" ! rm -f *.html single/*.txt single/*.html single/*.rtf --- 26,61 ---- # cd single ; sgml2html -s 0 $(master) ; cd ../ # rm single/$(master) ! # sgml2html -s 0 $(master) ! linuxdoc -B html -s 0 $(master) mv *.html single/ # Make separate html files html : $(master) ! @echo "----------- Making multi page HTML doc from SGML" ! linuxdoc -B html -s 1 $(master) # sgml2html -s 1 $(master) ! ! rtf : $(master) ! @echo "----------- Making single page RTF doc from SGML in single/" ! sgml2rtf $(master) ! # linuxdoc -B rtf $(master) ! mv *.rtf single/ ! ! pdf : $(master) ! @echo "----------- Making single page PDF doc from SGML in single/" ! # cp $(master) single/ ! # cd single ; sgml2html -s 0 $(master) ; cd ../ ! # rm single/$(master) ! linuxdoc -B latex -o pdf $(master) ! mv *.pdf single/ ! # Make a text version too txt : $(master) @echo "----------- Making single page text docs from SGML in single/" # sgml2txt $(master) ! linuxdoc -B txt $(master) mv *.txt single/ clean : @echo "----------- Removing all generated docs" ! rm -f *.html single/*.txt single/*.html single/*.rtf single/*.pdf |