From: <k-...@us...> - 2014-01-23 05:29:38
|
Revision: 659 http://sourceforge.net/p/euslisp/code/659 Author: k-okada Date: 2014-01-23 05:29:33 +0000 (Thu, 23 Jan 2014) Log Message: ----------- generate toc for jmanual Modified Paths: -------------- trunk/EusLisp/doc/jlatex/Makefile Modified: trunk/EusLisp/doc/jlatex/Makefile =================================================================== --- trunk/EusLisp/doc/jlatex/Makefile 2013-11-29 09:29:09 UTC (rev 658) +++ trunk/EusLisp/doc/jlatex/Makefile 2014-01-23 05:29:33 UTC (rev 659) @@ -1,6 +1,10 @@ all: - make dvi dvi pdf + make toc dvi dvi pdf + +toc: + makeindex jmanual.tex + dvi: platex jmanual.tex @@ -9,4 +13,7 @@ clean: - rm -f *~ *.aux + rm -f *~ *.aux *.idx *.log *.toc *.out *.ind *.ilg + +distclean: clean + rm -f *.dvi *.pdf \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <k-...@us...> - 2014-01-23 05:29:40
|
Revision: 659 http://sourceforge.net/p/euslisp/code/659 Author: k-okada Date: 2014-01-23 05:29:33 +0000 (Thu, 23 Jan 2014) Log Message: ----------- generate toc for jmanual Modified Paths: -------------- trunk/EusLisp/doc/jlatex/Makefile Modified: trunk/EusLisp/doc/jlatex/Makefile =================================================================== --- trunk/EusLisp/doc/jlatex/Makefile 2013-11-29 09:29:09 UTC (rev 658) +++ trunk/EusLisp/doc/jlatex/Makefile 2014-01-23 05:29:33 UTC (rev 659) @@ -1,6 +1,10 @@ all: - make dvi dvi pdf + make toc dvi dvi pdf + +toc: + makeindex jmanual.tex + dvi: platex jmanual.tex @@ -9,4 +13,7 @@ clean: - rm -f *~ *.aux + rm -f *~ *.aux *.idx *.log *.toc *.out *.ind *.ilg + +distclean: clean + rm -f *.dvi *.pdf \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <k-...@us...> - 2014-01-23 07:10:44
|
Revision: 660 http://sourceforge.net/p/euslisp/code/660 Author: k-okada Date: 2014-01-23 07:10:37 +0000 (Thu, 23 Jan 2014) Log Message: ----------- make sure to run platex twice, see Issue #54 Modified Paths: -------------- trunk/EusLisp/doc/jlatex/Makefile Modified: trunk/EusLisp/doc/jlatex/Makefile =================================================================== --- trunk/EusLisp/doc/jlatex/Makefile 2014-01-23 05:29:33 UTC (rev 659) +++ trunk/EusLisp/doc/jlatex/Makefile 2014-01-23 07:10:37 UTC (rev 660) @@ -1,5 +1,5 @@ all: - make toc dvi dvi pdf + make toc dvi pdf toc: @@ -7,6 +7,7 @@ dvi: platex jmanual.tex + platex jmanual.tex pdf: dvipdfmx jmanual.dvi This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <k-...@us...> - 2014-01-23 07:10:46
|
Revision: 660 http://sourceforge.net/p/euslisp/code/660 Author: k-okada Date: 2014-01-23 07:10:37 +0000 (Thu, 23 Jan 2014) Log Message: ----------- make sure to run platex twice, see Issue #54 Modified Paths: -------------- trunk/EusLisp/doc/jlatex/Makefile Modified: trunk/EusLisp/doc/jlatex/Makefile =================================================================== --- trunk/EusLisp/doc/jlatex/Makefile 2014-01-23 05:29:33 UTC (rev 659) +++ trunk/EusLisp/doc/jlatex/Makefile 2014-01-23 07:10:37 UTC (rev 660) @@ -1,5 +1,5 @@ all: - make toc dvi dvi pdf + make toc dvi pdf toc: @@ -7,6 +7,7 @@ dvi: platex jmanual.tex + platex jmanual.tex pdf: dvipdfmx jmanual.dvi This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <k-...@us...> - 2014-01-23 09:41:21
|
Revision: 668 http://sourceforge.net/p/euslisp/code/668 Author: k-okada Date: 2014-01-23 09:41:12 +0000 (Thu, 23 Jan 2014) Log Message: ----------- add latex2html Modified Paths: -------------- trunk/EusLisp/doc/jlatex/Makefile Modified: trunk/EusLisp/doc/jlatex/Makefile =================================================================== --- trunk/EusLisp/doc/jlatex/Makefile 2014-01-23 09:40:32 UTC (rev 667) +++ trunk/EusLisp/doc/jlatex/Makefile 2014-01-23 09:41:12 UTC (rev 668) @@ -17,4 +17,12 @@ rm -f *~ *.aux *.idx *.log *.toc *.out *.ind *.ilg distclean: clean - rm -f *.dvi *.pdf \ No newline at end of file + rm -f *.dvi *.pdf + +html: + nkf --in-place -e *.tex + latex2html -dir ../html/ -local_icons -auto_prefix -iso_language JP jmanual + nkf --in-place -j *.tex + (cd ../html; nkf --in-place -s jmanual*.html) + + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <k-...@us...> - 2014-01-23 09:41:23
|
Revision: 668 http://sourceforge.net/p/euslisp/code/668 Author: k-okada Date: 2014-01-23 09:41:12 +0000 (Thu, 23 Jan 2014) Log Message: ----------- add latex2html Modified Paths: -------------- trunk/EusLisp/doc/jlatex/Makefile Modified: trunk/EusLisp/doc/jlatex/Makefile =================================================================== --- trunk/EusLisp/doc/jlatex/Makefile 2014-01-23 09:40:32 UTC (rev 667) +++ trunk/EusLisp/doc/jlatex/Makefile 2014-01-23 09:41:12 UTC (rev 668) @@ -17,4 +17,12 @@ rm -f *~ *.aux *.idx *.log *.toc *.out *.ind *.ilg distclean: clean - rm -f *.dvi *.pdf \ No newline at end of file + rm -f *.dvi *.pdf + +html: + nkf --in-place -e *.tex + latex2html -dir ../html/ -local_icons -auto_prefix -iso_language JP jmanual + nkf --in-place -j *.tex + (cd ../html; nkf --in-place -s jmanual*.html) + + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |