aboutsummaryrefslogtreecommitdiffstats
path: root/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
commit5507eabec5ce3f22abcebd4bb15cba7193affcc5 (patch)
treecad4f4f4394ad93849f0ae70daf244d9f122ff0b /docs/CommandGuide
parente934219e77ade114bafb6b7eb2ad2d3893444601 (diff)
downloadexternal_llvm-5507eabec5ce3f22abcebd4bb15cba7193affcc5.zip
external_llvm-5507eabec5ce3f22abcebd4bb15cba7193affcc5.tar.gz
external_llvm-5507eabec5ce3f22abcebd4bb15cba7193affcc5.tar.bz2
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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18359 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/CommandGuide')
-rw-r--r--docs/CommandGuide/Makefile4
1 files changed, 1 insertions, 3 deletions
diff --git a/docs/CommandGuide/Makefile b/docs/CommandGuide/Makefile
index 0896c71..5b1afa9 100644
--- a/docs/CommandGuide/Makefile
+++ b/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::