summaryrefslogtreecommitdiff
path: root/docs/Makefile
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-05-01 23:11:42 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-05-01 23:11:42 +0000
commite0a809265c3ec4eadacbeb6e040b26a153e8e21d (patch)
treea5759016e20441059f157ea1f0682f5a828ca74c /docs/Makefile
parent55674acc0331f96bf9e2074e9853c9a1fa96857b (diff)
downloadclang-e0a809265c3ec4eadacbeb6e040b26a153e8e21d.tar.gz
clang-e0a809265c3ec4eadacbeb6e040b26a153e8e21d.tar.bz2
clang-e0a809265c3ec4eadacbeb6e040b26a153e8e21d.tar.xz
Add ONLY_MAN_DOCS variable to only install the man page, not the html
and ps documentation. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@70589 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/Makefile')
-rw-r--r--docs/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/Makefile b/docs/Makefile
index 47db7eb998..9b706c7f36 100644
--- a/docs/Makefile
+++ b/docs/Makefile
@@ -33,7 +33,10 @@ EXTRA_DIST := $(HTML) $(DOXYFILES) llvm.css CommandGuide img
.PHONY: install-html install-doxygen doxygen generated
-install_targets := install-html
+install_targets :=
+ifndef ONLY_MAN_DOCS
+install_targets += install-html
+endif
ifeq ($(ENABLE_DOXYGEN),1)
install_targets += install-doxygen
endif