diff options
author | Qyriad <qyriad@qyriad.me> | 2024-05-07 13:34:36 -0600 |
---|---|---|
committer | Qyriad <qyriad@qyriad.me> | 2024-05-07 17:04:30 -0600 |
commit | b9be46fb3115dffcd5cdaa62523bd025c7342e42 (patch) | |
tree | e95c1b36bf9797ce725481246980cf7c353f829d /doc/internal-api | |
parent | d184981af019f786df8ddb1b39527df30c62b262 (diff) |
remove the autoconf+Make buildsystem
We're not using it anymore. Any leftover bugs in the Meson buildsystem
are now just bugs.
Closes #249.
Change-Id: I0465a0c37ae819f94d40e7829f5bff046aa63d73
Diffstat (limited to 'doc/internal-api')
-rw-r--r-- | doc/internal-api/local.mk | 19 |
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 |