mirror of
https://github.com/RPCS3/llvm.git
synced 2025-02-02 00:35:27 +00:00
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
This commit is contained in:
parent
e934219e77
commit
5507eabec5
@ -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))
|
MAN = $(patsubst $(BUILD_SRC_DIR)/%.pod, $(BUILD_OBJ_DIR)/%.1, $(POD))
|
||||||
PS = $(patsubst $(BUILD_SRC_DIR)/%.pod, $(BUILD_OBJ_DIR)/%.ps, $(POD))
|
PS = $(patsubst $(BUILD_SRC_DIR)/%.pod, $(BUILD_OBJ_DIR)/%.ps, $(POD))
|
||||||
|
|
||||||
all-local:: $(HTML) $(MAN) $(PS)
|
|
||||||
|
|
||||||
.SUFFIXES:
|
.SUFFIXES:
|
||||||
.SUFFIXES: .html .pod .1 .ps
|
.SUFFIXES: .html .pod .1 .ps
|
||||||
|
|
||||||
@ -34,7 +32,7 @@ $(BUILD_OBJ_DIR)/%.1: %.pod
|
|||||||
$(POD2MAN) --release=$(PACKAGE_VERSION) \
|
$(POD2MAN) --release=$(PACKAGE_VERSION) \
|
||||||
--center="LLVM Command Guide" $< $@
|
--center="LLVM Command Guide" $< $@
|
||||||
|
|
||||||
$(BUILD_OBJ_DIR)/%.ps: man/man1/%.1
|
$(BUILD_OBJ_DIR)/%.ps: $(BUILD_OBJ_DIR)/%.1
|
||||||
$(GROFF) -Tps -man $< > $@
|
$(GROFF) -Tps -man $< > $@
|
||||||
|
|
||||||
clean-local::
|
clean-local::
|
||||||
|
Loading…
x
Reference in New Issue
Block a user