summaryrefslogtreecommitdiffstats
path: root/llvm/docs/CommandGuide
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2004-11-29 14:46:29 +0000
committerReid Spencer <rspencer@reidspencer.com>2004-11-29 14:46:29 +0000
commite1cb6b9e2e0714d9b7bee10239f99628988c8f4a (patch)
tree7b251f1d736c9c0d278fb3bcf747671398f9b07c /llvm/docs/CommandGuide
parent4f44c95967fc0228d4152f37e523066a16300352 (diff)
downloadbcm5719-llvm-e1cb6b9e2e0714d9b7bee10239f99628988c8f4a.tar.gz
bcm5719-llvm-e1cb6b9e2e0714d9b7bee10239f99628988c8f4a.zip
Fix two bugs:
1. Nothing should happen on "make all". Doc generation is quick, but we don't want to do it unless we're installing. 2. Correct a dependency for the *.ps files .. didn't notice this before because of cruft in my directory. It failed on a clean build. llvm-svn: 18359
Diffstat (limited to 'llvm/docs/CommandGuide')
-rw-r--r--llvm/docs/CommandGuide/Makefile4
1 files changed, 1 insertions, 3 deletions
diff --git a/llvm/docs/CommandGuide/Makefile b/llvm/docs/CommandGuide/Makefile
index 0896c711ace..5b1afa9aa8a 100644
--- a/llvm/docs/CommandGuide/Makefile
+++ b/llvm/docs/CommandGuide/Makefile
@@ -19,8 +19,6 @@ HTML = $(patsubst $(BUILD_SRC_DIR)/%.pod, $(BUILD_OBJ_DIR)/%.html, $(POD))
MAN = $(patsubst $(BUILD_SRC_DIR)/%.pod, $(BUILD_OBJ_DIR)/%.1, $(POD))
PS = $(patsubst $(BUILD_SRC_DIR)/%.pod, $(BUILD_OBJ_DIR)/%.ps, $(POD))
-all-local:: $(HTML) $(MAN) $(PS)
-
.SUFFIXES:
.SUFFIXES: .html .pod .1 .ps
@@ -34,7 +32,7 @@ $(BUILD_OBJ_DIR)/%.1: %.pod
$(POD2MAN) --release=$(PACKAGE_VERSION) \
--center="LLVM Command Guide" $< $@
-$(BUILD_OBJ_DIR)/%.ps: man/man1/%.1
+$(BUILD_OBJ_DIR)/%.ps: $(BUILD_OBJ_DIR)/%.1
$(GROFF) -Tps -man $< > $@
clean-local::
OpenPOWER on IntegriCloud