mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 16:26:18 +02:00
19 lines
583 B
Makefile
19 lines
583 B
Makefile
.PHONY: external-api-html
|
|
|
|
ifeq ($(external_api_docs), yes)
|
|
|
|
$(docdir)/external-api/html/index.html $(docdir)/external-api/latex: $(d)/doxygen.cfg
|
|
mkdir -p $(docdir)/external-api
|
|
{ cat $< ; echo "OUTPUT_DIRECTORY=$(docdir)/external-api" ; } | doxygen -
|
|
|
|
# Generate the HTML API docs for Nix's unstable external interfaces.
|
|
external-api-html: $(docdir)/external-api/html/index.html
|
|
|
|
else
|
|
|
|
# Make a nicer error message
|
|
external-api-html:
|
|
@echo "External API docs are disabled. Configure with '--enable-external-api-docs', or avoid calling 'make external-api-html'."
|
|
@exit 1
|
|
|
|
endif
|