summaryrefslogtreecommitdiff
path: root/docs/pod/Makefile
diff options
context:
space:
mode:
authoradmin (centauri.fritz.box) <puppet@mx.buetow.org>2014-06-30 23:53:04 +0200
committeradmin (centauri.fritz.box) <puppet@mx.buetow.org>2014-06-30 23:53:04 +0200
commitadc4b59a3e7c9db6f33670164490830d87331228 (patch)
treeadc5d21856852bfb5c3cca794a9c07ad476d877e /docs/pod/Makefile
parent63cf3028445d8d213ffc774f77aafd7283cb4fbd (diff)
parent5ab5de91eb0ae6ed9db78a2c8c47ec67f105e504 (diff)
Diffstat (limited to 'docs/pod/Makefile')
-rw-r--r--docs/pod/Makefile20
1 files changed, 0 insertions, 20 deletions
diff --git a/docs/pod/Makefile b/docs/pod/Makefile
deleted file mode 100644
index ddc6de4..0000000
--- a/docs/pod/Makefile
+++ /dev/null
@@ -1,20 +0,0 @@
-# THIS MAKEFILE MAY WORK ONLY WITH (NET)BSD MAKE AKA PMAKE!
-
-all: man html latex txt
-html:
- pod2html fype.pod > fype.html
-latex:
- pod2latex fype.pod > fype.tex
-man:
- pod2man --release "`cat ../version.txt`" --center "The Fype Users Manual Page" fype.pod > fype.man
- cp fype.man fype.1
- if [ -f fype.1.gz ]; then rm fype.1.gz; fi
- gzip fype.1
-txt:
- pod2text fype.pod | tee ../../README > fype.txt
-pdf:
- pod2pdf --footer-text="This document describes `cat ../version.txt`" fype.pod > fype.pdf
-clean:
- for i in html tex man 1.gz pdf; do \
- if [ -f $$i ]; then rm $$i; fi \
- done