diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2010-11-12 19:24:06 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2010-11-12 19:24:06 +0000 |
commit | 9d9ae9fb59ee3897ffc21dfa3b7078478ac6d674 (patch) | |
tree | 7e3b46e0d8d7ad0ca331e198cc0509b4c0dc9303 /Makefile.config.in | |
parent | 52668c9a3025ee64b408bf041453c93a1ac51908 (diff) |
Add --enable-docs. Patch by NAKAMURA Takumi.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@118918 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile.config.in')
-rw-r--r-- | Makefile.config.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile.config.in b/Makefile.config.in index 9c2f4e6f20..a4d9f3d7c5 100644 --- a/Makefile.config.in +++ b/Makefile.config.in @@ -264,6 +264,9 @@ OPTIMIZE_OPTION := @OPTIMIZE_OPTION@ # information to allow gprof to be used to get execution frequencies. #ENABLE_PROFILING = 1 +# When ENABLE_DOCS is disabled, docs/ will not be built. +ENABLE_DOCS = @ENABLE_DOCS@ + # When ENABLE_DOXYGEN is enabled, the doxygen documentation will be built ENABLE_DOXYGEN = @ENABLE_DOXYGEN@ |