r232065 - [docs] Replace the doxygen qch option properly.
Logan Chien
tzuhsiang.chien at gmail.com
Thu Mar 12 10:27:20 PDT 2015
Author: logan
Date: Thu Mar 12 12:27:19 2015
New Revision: 232065
URL: http://llvm.org/viewvc/llvm-project?rev=232065&view=rev
Log:
[docs] Replace the doxygen qch option properly.
Modified:
cfe/trunk/docs/Makefile
Modified: cfe/trunk/docs/Makefile
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/docs/Makefile?rev=232065&r1=232064&r2=232065&view=diff
==============================================================================
--- cfe/trunk/docs/Makefile (original)
+++ cfe/trunk/docs/Makefile Thu Mar 12 12:27:19 2015
@@ -16,15 +16,22 @@ DOXYGEN = doxygen
$(PROJ_OBJ_DIR)/doxygen.cfg: doxygen.cfg.in
cat $< | sed \
- -e 's/@abs_srcdir@/./g' \
-e 's/@DOT@/dot/g' \
-e 's/@PACKAGE_VERSION@/mainline/' \
-e 's/@abs_builddir@/./g' \
+ -e 's/@abs_srcdir@/./g' \
+ -e 's/@clang_doxygen_generate_qhp@/NO/g' \
+ -e 's/@clang_doxygen_qch_filename@//g' \
+ -e 's/@clang_doxygen_qhelpgenerator_path@//g' \
+ -e 's/@clang_doxygen_qhp_cust_filter_attrs@//g' \
+ -e 's/@clang_doxygen_qhp_cust_filter_name@//g' \
+ -e 's/@clang_doxygen_qhp_namespace@//g' \
+ -e 's/@enable_external_search@/NO/g' \
-e 's/@enable_searchengine@/NO/g' \
- -e 's/@searchengine_url@//g' \
-e 's/@enable_server_based_search@/NO/g' \
- -e 's/@enable_external_search@/NO/g' \
- -e 's/@extra_search_mappings@//g' > $@
+ -e 's/@extra_search_mappings@//g' \
+ -e 's/@searchengine_url@//g' \
+ > $@
endif
include $(CLANG_LEVEL)/Makefile
More information about the cfe-commits
mailing list