summaryrefslogtreecommitdiff
path: root/system/doc/efficiency_guide/Makefile
diff options
context:
space:
mode:
authorLukas Larsson <lukas@erlang.org>2020-02-24 13:38:53 +0100
committerLukas Larsson <lukas@erlang.org>2020-02-24 13:38:53 +0100
commitdd3b0157d2b20adacd98fea64b3af443b6639b9a (patch)
tree8b2a1bd6678d159e287dcf0a38c3dd58a1526f29 /system/doc/efficiency_guide/Makefile
parent912db3529b2485261baf38f5a5855acf4a147fbb (diff)
parent1befa3c8ea9c1ddab1da4c5f94b5c64dc240dacd (diff)
downloaderlang-dd3b0157d2b20adacd98fea64b3af443b6639b9a.tar.gz
Merge branch 'lukas/kernel/code-chunk-lookup/OTP-16494/OTP-16222/OTP-16406/OTP-16499/OTP-16500/OTP-16501/OTP-16502/OTP-16503'
* lukas/kernel/code-chunk-lookup/OTP-16494/OTP-16222/OTP-16406/OTP-16499/OTP-16500/OTP-16501/OTP-16502/OTP-16503: (27 commits) otp: Update doc build instructions with DOC_TARGETS Include erts in travis dialyzer run erts: Fix unmatched return dialyzer warning Move chunk into erlang module for speed Update primary bootstrap Add DOC_TARGETS makefile variable Start work on documentation for EEP-48 Remove term_to_binary of doc chunks doc content Use <code> for monospace, remove anno, add <a marker> Insert newline before paragraph if the previous element did not Generate hidden chunk files for any internal modules Implement EEP-48 aka doc chunks doc: Move typer cli app to REF1 section otp: Refactor doc make system and introduce EEP-48 Fix docs to handle chunk generation Fix mnesia docs to use common name convention Fix ssh type doc to use common name convention Fix ssl doc to use a single name convention Add Module prefix to all callbacks docgen: Remove many dead entities from dtds ...
Diffstat (limited to 'system/doc/efficiency_guide/Makefile')
-rw-r--r--system/doc/efficiency_guide/Makefile14
1 files changed, 6 insertions, 8 deletions
diff --git a/system/doc/efficiency_guide/Makefile b/system/doc/efficiency_guide/Makefile
index a2742a1354..285f8aad4b 100644
--- a/system/doc/efficiency_guide/Makefile
+++ b/system/doc/efficiency_guide/Makefile
@@ -88,7 +88,9 @@ DVIPS_FLAGS +=
# Targets
# ----------------------------------------------------
-docs: html
+DOC_TARGETS?=html
+
+docs: $(DOC_TARGETS)
local_docs: PDFDIR=../../pdf
@@ -107,15 +109,11 @@ clean clean_docs:
# ----------------------------------------------------
include $(ERL_TOP)/make/otp_release_targets.mk
-release_docs_spec: docs
-# $(INSTALL_DIR) "$(RELEASE_PATH)/pdf"
-# $(INSTALL_DATA) $(TOP_PDF_FILE) "$(RELEASE_PATH)/pdf"
- $(INSTALL_DIR) $(RELSYSDIR)
+release_html_spec: html
+ $(INSTALL_DIR) "$(RELSYSDIR)"
$(INSTALL_DATA) $(GIF_FILES) $(EXTRA_FILES) $(HTMLDIR)/*.html \
$(RELSYSDIR)
+release_docs_spec: $(DOC_TARGETS:%=release_%_spec)
release_spec:
-
-
-