aboutsummaryrefslogtreecommitdiff
path: root/doc/internal-api/local.mk
diff options
context:
space:
mode:
Diffstat (limited to 'doc/internal-api/local.mk')
-rw-r--r--doc/internal-api/local.mk19
1 files changed, 0 insertions, 19 deletions
diff --git a/doc/internal-api/local.mk b/doc/internal-api/local.mk
deleted file mode 100644
index 890f341b7..000000000
--- a/doc/internal-api/local.mk
+++ /dev/null
@@ -1,19 +0,0 @@
-.PHONY: internal-api-html
-
-ifeq ($(internal_api_docs), yes)
-
-$(docdir)/internal-api/html/index.html $(docdir)/internal-api/latex: $(d)/doxygen.cfg
- mkdir -p $(docdir)/internal-api
- { cat $< ; echo "OUTPUT_DIRECTORY=$(docdir)/internal-api" ; } | doxygen -
-
-# Generate the HTML API docs for Nix's unstable internal interfaces.
-internal-api-html: $(docdir)/internal-api/html/index.html
-
-else
-
-# Make a nicer error message
-internal-api-html:
- @echo "Internal API docs are disabled. Configure with '--enable-internal-api-docs', or avoid calling 'make internal-api-html'."
- @exit 1
-
-endif