2016-09-20 14:31:23 +00:00
|
|
|
ifeq ($(doc_generate),yes)
|
|
|
|
|
2020-07-22 18:27:23 +00:00
|
|
|
MANUAL_SRCS := $(call rwildcard, $(d)/src, *.md)
|
2014-02-01 10:30:21 +00:00
|
|
|
|
2020-07-22 18:27:23 +00:00
|
|
|
#$(d)/version.txt:
|
|
|
|
# $(trace-gen) echo -n $(PACKAGE_VERSION) > $@
|
2014-02-01 10:30:21 +00:00
|
|
|
|
2020-07-22 18:27:23 +00:00
|
|
|
clean-files += $(d)/version.txt
|
2014-02-01 10:30:21 +00:00
|
|
|
|
2020-07-22 18:27:23 +00:00
|
|
|
dist-files += $(d)/version.txt
|
2014-02-01 13:28:31 +00:00
|
|
|
|
2014-02-01 10:30:21 +00:00
|
|
|
|
|
|
|
# Generate man pages.
|
|
|
|
man-pages := $(foreach n, \
|
2020-07-22 18:27:23 +00:00
|
|
|
nix-copy-closure.1, \
|
2014-02-01 10:30:21 +00:00
|
|
|
$(d)/$(n))
|
2020-07-22 18:27:23 +00:00
|
|
|
# nix-env.1 nix-build.1 nix-shell.1 nix-store.1 nix-instantiate.1 \
|
|
|
|
# nix-collect-garbage.1, \
|
|
|
|
# nix-prefetch-url.1 nix-channel.1 \
|
|
|
|
# nix-hash.1 nix-copy-closure.1 \
|
|
|
|
# nix.conf.5 nix-daemon.8, \
|
2014-09-16 13:29:55 +00:00
|
|
|
|
2014-02-01 11:23:14 +00:00
|
|
|
clean-files += $(d)/*.1 $(d)/*.5 $(d)/*.8
|
2014-02-01 10:30:21 +00:00
|
|
|
|
2014-02-01 15:30:24 +00:00
|
|
|
dist-files += $(man-pages)
|
2014-02-01 14:18:48 +00:00
|
|
|
|
2020-07-22 18:27:23 +00:00
|
|
|
$(d)/nix-copy-closure.1: $(d)/src/command-ref/nix-copy-closure.md
|
|
|
|
$(trace-gen) lowdown -sT man $^ -o $@
|
2014-02-01 10:30:21 +00:00
|
|
|
|
2020-07-22 18:27:23 +00:00
|
|
|
# Generate the HTML manual.
|
|
|
|
install: $(docdir)/manual/index.html
|
2014-02-01 10:30:21 +00:00
|
|
|
|
2020-07-22 18:27:23 +00:00
|
|
|
$(docdir)/manual/index.html: $(MANUAL_SRCS)
|
|
|
|
$(trace-gen) mdbook build doc/manual -d $(docdir)/manual
|
2016-09-20 14:31:23 +00:00
|
|
|
|
|
|
|
|
|
|
|
endif
|