diff options
author | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | 2009-04-21 16:37:34 +0000 |
---|---|---|
committer | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | 2009-04-21 16:37:34 +0000 |
commit | 35c0ae8018b59d06f01892b1db4a5bcd75c36eeb (patch) | |
tree | 28284579fd365ed1cab29028cbdc37694d65e44b /Master/texmf/doc/man/man5 | |
parent | f78e163aab1a69582251f060d80e4e813744a8d3 (diff) |
Man Makefiles: dropping support for html, adding support for .so-ourced pages.
git-svn-id: svn://tug.org/texlive/trunk@12776 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf/doc/man/man5')
-rw-r--r-- | Master/texmf/doc/man/man5/Makefile | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/Master/texmf/doc/man/man5/Makefile b/Master/texmf/doc/man/man5/Makefile index 1f32aa2db53..e4e847184d0 100644 --- a/Master/texmf/doc/man/man5/Makefile +++ b/Master/texmf/doc/man/man5/Makefile @@ -1,19 +1,15 @@ SRC = $(wildcard man5/*.5) PDF = $(patsubst %.5, %.pdf, $(SRC)) -HTML = $(patsubst %.5, %.html, $(SRC)) + +MKPDF = $(GROFF) $(PDFOPTS) $< | $(PSPDF) - $@ all: pdf pdf: $(PDF) -html: $(HTML) clean: - @echo 'Removing pdf and html files.' - @rm -f -- $(PDF) $(HTML) + @echo 'Removing pdf files.' + @rm -f -- $(PDF) %.pdf: %.5 - $(GROFF) $(PDFOPTS) $< | $(PSPDF) - $@ - -%.html: %.5 - $(GROFF) $(HTMLOPTS) $< > $@ - + $(MKPDF) |