aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2008-02-12 06:07:47 +0000
committerChris Lattner <sabre@nondot.org>2008-02-12 06:07:47 +0000
commit18232a5fd177f629550c9be30ba1ed676ff0ca42 (patch)
tree1d4b52ed7eec809fd1a147f5b819d1246af07d05 /docs
parent02b81fe5f58b38986016424880a2bff2f6205dfc (diff)
downloadexternal_llvm-18232a5fd177f629550c9be30ba1ed676ff0ca42.zip
external_llvm-18232a5fd177f629550c9be30ba1ed676ff0ca42.tar.gz
external_llvm-18232a5fd177f629550c9be30ba1ed676ff0ca42.tar.bz2
heavily refactor this to have less duplication between BUILD_FOR_WEBSITE mode and not.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@46991 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r--docs/CommandGuide/Makefile70
1 files changed, 30 insertions, 40 deletions
diff --git a/docs/CommandGuide/Makefile b/docs/CommandGuide/Makefile
index 4c65d35..ffbbb97 100644
--- a/docs/CommandGuide/Makefile
+++ b/docs/CommandGuide/Makefile
@@ -8,67 +8,59 @@
##===----------------------------------------------------------------------===##
ifdef BUILD_FOR_WEBSITE
-
# This special case is for keeping the CommandGuide on the LLVM web site
# up to date automatically as the documents are checked in. It must build
# the POD files to HTML only and keep them in the src directories. It must also
# build in an unconfigured tree, hence the ifdef. To use this, run
# make -s BUILD_FOR_WEBSITE=1 inside the cvs commit script.
+SRC_DOC_DIR=
+DST_HTML_DIR=html/
+DST_MAN_DIR=man/man1/
+DST_PS_DIR=ps/
-POD := $(wildcard *.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/%.html: %.pod
- pod2html --css=manpage.css --htmlroot=. \
- --podpath=. --noindex --infile=$< --outfile=$@ --title=$*
-
-man/man1/%.1: %.pod
- pod2man --release=CVS --center="LLVM Command Guide" $< $@
-
-ps/%.ps: man/man1/%.1
- groff -Tps -man $< > $@
+# If we are in BUILD_FOR_WEBSITE mode, default to the all target.
+all:: html man ps
clean:
rm -f pod2htm*.*~~ $(HTML) $(MAN) $(PS)
+else
-else
-
+# Otherwise, if not in BUILD_FOR_WEBSITE mode, use the project info.
LEVEL := ../..
-
include $(LEVEL)/Makefile.common
-POD := $(wildcard $(PROJ_SRC_DIR)/*.pod)
+SRC_DOC_DIR=$(PROJ_SRC_DIR)/
+DST_HTML_DIR=$(PROJ_OBJ_DIR)/
+DST_MAN_DIR=$(PROJ_OBJ_DIR)/
+DST_PS_DIR=$(PROJ_OBJ_DIR)/
-EXTRA_DIST := $(POD) index.html
+endif
-HTML = $(patsubst $(PROJ_SRC_DIR)/%.pod, $(PROJ_OBJ_DIR)/%.html, $(POD))
-MAN = $(patsubst $(PROJ_SRC_DIR)/%.pod, $(PROJ_OBJ_DIR)/%.1, $(POD))
-PS = $(patsubst $(PROJ_SRC_DIR)/%.pod, $(PROJ_OBJ_DIR)/%.ps, $(POD))
+
+POD := $(wildcard $(SRC_DOC_DIR)*.pod)
+HTML := $(patsubst $(SRC_DOC_DIR)%.pod, $(DST_HTML_DIR)%.html, $(POD))
+MAN := $(patsubst $(SRC_DOC_DIR)%.pod, $(DST_MAN_DIR)%.1, $(POD))
+PS := $(patsubst $(SRC_DOC_DIR)%.pod, $(DST_PS_DIR)%.ps, $(POD))
.SUFFIXES:
.SUFFIXES: .html .pod .1 .ps
-$(HTML) : html/.dir man/.dir man/man1/.dir ps/.dir
+$(DST_HTML_DIR)%.html: %.pod $(DST_HTML_DIR)/.dir
+ pod2html --css=manpage.css --htmlroot=. \
+ --podpath=. --noindex --infile=$< --outfile=$@ --title=$*
-html: $(HTML)
+$(DST_MAN_DIR)%.1: %.pod $(DST_MAN_DIR)/.dir
+ pod2man --release=CVS --center="LLVM Command Guide" $< $@
+
+$(DST_PS_DIR)%.ps: $(DST_MAN_DIR)%.1 $(DST_PS_DIR)/.dir
+ groff -Tps -man $< > $@
-$(PROJ_OBJ_DIR)/%.html: %.pod
- $(POD2HTML) --css=manpage.css --htmlroot=. --podpath=. \
- --noindex --infile=$< --outfile=$@ --title=$*
-$(PROJ_OBJ_DIR)/%.1: %.pod
- $(POD2MAN) --release=$(LLVMVersion) \
- --center="LLVM Command Guide" $< $@
+html: $(HTML)
+man: $(MAN)
+ps: $(PS)
-$(PROJ_OBJ_DIR)/%.ps: $(PROJ_OBJ_DIR)/%.1
- $(GROFF) -Tps -man $< > $@
+EXTRA_DIST := $(POD) index.html
clean-local::
$(Verb) $(RM) -f pod2htm*.*~~ $(HTML) $(MAN) $(PS)
@@ -97,5 +89,3 @@ uninstall-local::
printvars::
$(Echo) "POD : " '$(POD)'
$(Echo) "HTML : " '$(HTML)'
-
-endif