1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-06-08 16:26:04 +02:00

Generated PDF from zsh.texi using pdfetex

This commit is contained in:
Peter Stephenson 2005-02-04 16:59:23 +00:00
parent 8326508234
commit 64c2db0ca2
5 changed files with 14 additions and 1 deletions

View File

@ -1,5 +1,9 @@
2005-02-04 Peter Stephenson <pws@csr.com>
* 20787: configure.ac, Config/defs.mk.in, Doc/.distfiles,
Doc/Makefile.in: generate zsh.pdf from zsh.texi using pdfetex;
much better output than PS from DVI.
* Motoi Washida: 20785: configure.ac: libiconv test needed
for Mac OS X 3.

View File

@ -69,6 +69,7 @@ ANSI2KNR = @ANSI2KNR@
YODL = @YODL@
YODL2TXT = $(YODL)2txt
YODL2HTML = $(YODL)2html
PDFETEX = @PDFETEX@
# install utility
INSTALL_PROGRAM = @INSTALL_PROGRAM@

View File

@ -15,4 +15,5 @@ DISTFILES_DOC='
zsh.info zsh.info-[0-9]*
zsh.html zsh_*toc.html zsh_[0-9]*.html
zsh.dvi zsh_us.ps zsh_a4.ps
zsh.pdf
'

View File

@ -81,7 +81,7 @@ Zsh/seealso.yo Zsh/tcpsys.yo Zsh/zftpsys.yo Zsh/zle.yo
all: man texi ../META-FAQ
.PHONY: all
everything: all dvi ps html
everything: all dvi ps html pdf
.PHONY: everything
dvi: zsh.dvi
@ -90,6 +90,12 @@ dvi: zsh.dvi
zsh.dvi: $(sdir)/zsh.texi
$(TEXI2DVI) $(sdir)/zsh.texi
pdf: zsh.pdf
.PHONY: pdf
zsh.pdf: $(sdir)/zsh.texi
$(PDFETEX) $(sdir)/zsh.texi
texi: $(sdir)/zsh.texi
.PHONY: texi

View File

@ -490,6 +490,7 @@ AC_PROG_INSTALL dnl Check for BSD compatible `install'
AC_PROG_AWK dnl Check for mawk,gawk,nawk, then awk.
AC_PROG_LN dnl Check for working ln, for "make install"
AC_CHECK_PROGS([YODL], [yodl], [: yodl])
AC_CHECK_PROGS([PDFETEX], [pdfetex], [: pdfetex])
AC_CHECK_PROGS([ANSI2KNR], [ansi2knr], [: ansi2knr])
if test x"$ansi2knr" = xyes && test x"$ANSI2KNR" = x": ansi2knr"; then