diff options
author | Glenn Morris <rgm@gnu.org> | 2010-10-10 17:30:34 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2010-10-10 17:30:34 -0700 |
commit | c12e4a81fe3e85c4c46d3e1add37d23e15c833dd (patch) | |
tree | 385d43bdb1d42fe22ff0a24e41651dd6c05c13cd /doc/lispintro | |
parent | 602541258302dfaf771bc30043e3991dfd9b0873 (diff) | |
download | emacs-c12e4a81fe3e85c4c46d3e1add37d23e15c833dd.tar.gz emacs-c12e4a81fe3e85c4c46d3e1add37d23e15c833dd.tar.bz2 emacs-c12e4a81fe3e85c4c46d3e1add37d23e15c833dd.zip |
Add ps rules for some doc/ Makefiles.
* doc/misc/Makefile.in (.texi.dvi): Remove unnecessary suffix rule.
* dos/lispref/Makefile.in (DVIPS): New variable.
(.PHONY): Add ps.
(ps, elisp.ps): New targets.
(clean): Delete ps file.
* doc/lispintro/Makefile.in (.dvi.ps): Remove unnecessary suffix rule.
(.PHONY): Add ps.
(ps, emacs-lisp-intro.ps): New targets.
(clean): Delete ps file.
* doc/emacs/Makefile.in (.texi.dvi): Remove unnecessary suffix rule.
(DVIPS): New variable.
(.PHONY): Add ps.
(ps, emacs.ps, emacs-xtra.ps): New targets.
(clean): Delete ps files.
Diffstat (limited to 'doc/lispintro')
-rw-r--r-- | doc/lispintro/ChangeLog | 7 | ||||
-rw-r--r-- | doc/lispintro/Makefile.in | 13 |
2 files changed, 13 insertions, 7 deletions
diff --git a/doc/lispintro/ChangeLog b/doc/lispintro/ChangeLog index b3ae80095ae..87ce4dc7f63 100644 --- a/doc/lispintro/ChangeLog +++ b/doc/lispintro/ChangeLog @@ -1,3 +1,10 @@ +2010-10-11 Glenn Morris <rgm@gnu.org> + + * Makefile.in (.dvi.ps): Remove unnecessary suffix rule. + (.PHONY): Add ps. + (ps, emacs-lisp-intro.ps): New targets. + (clean): Delete ps file. + 2010-10-09 Glenn Morris <rgm@gnu.org> * Makefile.in (VPATH): Remove. diff --git a/doc/lispintro/Makefile.in b/doc/lispintro/Makefile.in index 622b1236bca..5fc7eb17236 100644 --- a/doc/lispintro/Makefile.in +++ b/doc/lispintro/Makefile.in @@ -35,15 +35,14 @@ DVIPS = dvips mkinfodir = @test -d ${infodir} || mkdir ${infodir} || test -d ${infodir} -.SUFFIXES: .dvi .ps .texi - -.PHONY: info dvi html pdf +.PHONY: info dvi html pdf ps info: ${infodir}/eintr dvi: emacs-lisp-intro.dvi html: emacs-lisp-intro.html pdf: emacs-lisp-intro.pdf +ps: emacs-lisp-intro.ps # The file name eintr must fit within 5 characters, to allow for # -NN extensions to fit into DOS 8+3 limits without clashing. @@ -54,15 +53,15 @@ ${infodir}/eintr: ${srcdir}/emacs-lisp-intro.texi emacs-lisp-intro.dvi: ${srcdir}/emacs-lisp-intro.texi $(TEXI2DVI) -I $(srcdir) -I $(texinfodir) $< +emacs-lisp-intro.ps: emacs-lisp-intro.dvi + $(DVIPS) -o $@ $< + emacs-lisp-intro.pdf: ${srcdir}/emacs-lisp-intro.texi $(TEXI2PDF) -I $(srcdir) -I $(texinfodir) $< emacs-lisp-intro.html: ${srcdir}/emacs-lisp-intro.texi $(MAKEINFO) --html -o $@ $< -.dvi.ps: - $(DVIPS) $< -o $@ - .PHONY: mostlyclean clean distclean maintainer-clean infoclean mostlyclean: @@ -70,7 +69,7 @@ mostlyclean: *.op *.ops *.pg *.pgs *.tp *.tps *.vr *.vrs clean: mostlyclean - rm -f emacs-lisp-intro.dvi emacs-lisp-intro.pdf + rm -f emacs-lisp-intro.dvi emacs-lisp-intro.pdf emacs-lisp-intro.ps rm -rf emacs-lisp-intro.html/ rm -f emacs-lispintro-${version}.tar* |