aboutsummaryrefslogtreecommitdiff
path: root/docs/CommandGuide
diff options
context:
space:
mode:
authorMisha Brukman <brukman+llvm@gmail.com>2004-05-14 20:24:59 +0000
committerMisha Brukman <brukman+llvm@gmail.com>2004-05-14 20:24:59 +0000
commit9ff1a93f8369dd2c517d244629ee7a6a7e1088e6 (patch)
tree85d314a7667d4bf4fe73b1c5b8b22e79e6b0a180 /docs/CommandGuide
parente993d20630de4c40eaa3dcca3da92d186c751d58 (diff)
Put outputs of each type into a separate subdirectory.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13575 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/CommandGuide')
-rw-r--r--docs/CommandGuide/Makefile16
1 files changed, 8 insertions, 8 deletions
diff --git a/docs/CommandGuide/Makefile b/docs/CommandGuide/Makefile
index 730718b0a5..8f2f9ce61c 100644
--- a/docs/CommandGuide/Makefile
+++ b/docs/CommandGuide/Makefile
@@ -1,21 +1,21 @@
POD = $(wildcard *.pod)
-HTML = $(patsubst %.pod, %.html, $(POD))
-MAN = $(patsubst %.pod, %.1, $(POD))
-PS = $(patsubst %.pod, %.ps, $(POD))
+HTML = $(patsubst %.pod, html/%.html, $(POD))
+MAN = $(patsubst %.pod, man/man1/%.1, $(POD))
+PS = $(patsubst %.pod, ps/%.ps, $(POD))
all: $(HTML) $(MAN) $(PS)
.SUFFIXES:
.SUFFIXES: .html .pod .1 .ps
-%.html: %.pod
- pod2html --css=http://www.perldoc.com/css/perldoc.css \
- --podpath=/`pwd` --noindex --infile=$< --outfile=$@
+html/%.html: %.pod
+ pod2html --css=manpage.css --htmlroot=. \
+ --podpath=. --noindex --infile=$< --outfile=$@
-%.1: %.pod
+man/man1/%.1: %.pod
pod2man --release=1.3 --center="LLVM User's Guide" $< $@
-%.ps: %.1
+ps/%.ps: man/man1/%.1
groff -Tps -man $< > $@
clean: