Update of /cvsroot/phpslash/phpslash-dev/doc/html
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2001
Modified Files:
Makefile
Log Message:
fixed so that html files go into the "html" directory, and single files go into the "single" directory
Index: Makefile
===================================================================
RCS file: /cvsroot/phpslash/phpslash-dev/doc/html/Makefile,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** Makefile 23 Nov 2004 16:00:56 -0000 1.4
--- Makefile 23 Nov 2004 17:06:48 -0000 1.5
***************
*** 28,32 ****
# sgml2html -s 0 $(master)
linuxdoc -B html -s 0 $(master)
! #mv *.html single/
# Make separate html files
--- 28,33 ----
# sgml2html -s 0 $(master)
linuxdoc -B html -s 0 $(master)
! mkdir single
! mv *.html single/
# Make separate html files
***************
*** 35,38 ****
--- 36,41 ----
linuxdoc -B html -s 1 $(master)
# sgml2html -s 1 $(master)
+ mkdir html
+ mv *.html html/
rtf : $(master)
***************
*** 40,44 ****
sgml2rtf $(master)
# linuxdoc -B rtf $(master)
! #mv *.rtf single/
pdf : $(master)
--- 43,48 ----
sgml2rtf $(master)
# linuxdoc -B rtf $(master)
! mkdir single
! mv *.rtf single/
pdf : $(master)
***************
*** 48,52 ****
# rm single/$(master)
linuxdoc -B latex -o pdf $(master)
! #mv *.pdf single/
# Make a text version too
--- 52,57 ----
# rm single/$(master)
linuxdoc -B latex -o pdf $(master)
! mkdir single
! mv *.pdf single/
# Make a text version too
***************
*** 55,61 ****
# 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
--- 60,68 ----
# sgml2txt $(master)
linuxdoc -B txt $(master)
! mkdir single
! mv *.txt single/
!
clean :
@echo "----------- Removing all generated docs"
! rm -fr *.html single/ html/
|