summaryrefslogtreecommitdiff
path: root/Master/texmf/doc/man/man5/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf/doc/man/man5/Makefile')
-rw-r--r--Master/texmf/doc/man/man5/Makefile17
1 files changed, 0 insertions, 17 deletions
diff --git a/Master/texmf/doc/man/man5/Makefile b/Master/texmf/doc/man/man5/Makefile
deleted file mode 100644
index c0afb8965a5..00000000000
--- a/Master/texmf/doc/man/man5/Makefile
+++ /dev/null
@@ -1,17 +0,0 @@
-# Public domain. Originally written by Manuel Pegourie-Gonnard, 2008.
-
-SRC = $(wildcard man5/*.5)
-PDF = $(patsubst %.5, %.man5.pdf, $(SRC))
-
-MKPDF = $(GROFF) $(PDFOPTS) $< | $(PSPDF) - $@.tmp && mv $@.tmp $@ || rm $@.tmp
-
-all: pdf
-pdf: $(PDF)
-
-clean:
- @echo 'Removing pdf files.'
- @rm -f -- $(PDF)
-
-%.man5.pdf: %.5
- $(MKPDF)
-