diff options
| author | mrmr1993 | 2018-03-03 15:10:49 +0000 |
|---|---|---|
| committer | mrmr1993 | 2018-03-05 14:46:31 +0000 |
| commit | 65701510e61651c91d4c256c04499cc3cf38794c (patch) | |
| tree | ca696d1c303553f34905e259f8366a79ff5ccb29 | |
| parent | efd1dd57409f5b22243c443dcde959692aabd6bd (diff) | |
Remove NOPLUGINDOCS option
| -rw-r--r-- | Makefile.doc | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/Makefile.doc b/Makefile.doc index 8c34c94725..9fd93651d1 100644 --- a/Makefile.doc +++ b/Makefile.doc @@ -385,18 +385,12 @@ install-doc-index-urls: # Documentation of the source code (using ocamldoc) ########################################################################### -# To skip building docs for plugins and build docs for core only, set this -# variable to 1 (or any non-empty value): -NOPLUGINDOCS ?= - OCAMLDOCDIR=dev/ocamldoc -DOCMLLIBS=$(if $(NOPLUGINDOCS), \ - $(CORECMA:.cma=_MLLIB_DEPENDENCIES), \ - $(CORECMA:.cma=_MLLIB_DEPENDENCIES) $(PLUGINSCMO:.cmo=_MLPACK_DEPENDENCIES)) +DOCMLLIBS= $(CORECMA:.cma=_MLLIB_DEPENDENCIES) $(PLUGINSCMO:.cmo=_MLPACK_DEPENDENCIES) DOCMLS=$(foreach lib,$(DOCMLLIBS),$(addsuffix .ml, $($(lib)))) -DOCMLIS=$(wildcard $(addsuffix /*.mli, $(if $(NOPLUGINDOCS),$(CORESRCDIRS),$(SRCDIRS)))) +DOCMLIS=$(wildcard $(addsuffix /*.mli, $(SRCDIRS))) # Defining options to generate dependencies graphs DOT=dot |
