diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2020-07-23 13:09:30 +0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2020-07-23 18:27:12 +0200 |
commit | efff6cf163fb911689b41d7c2970efd8b17876e1 (patch) | |
tree | dc354aa50525534c922fdca0c81283c1862ddc1f /doc | |
parent | 504b7abc452936b3118a18efea05026083ed8cdd (diff) |
Install all manpages
Diffstat (limited to 'doc')
-rw-r--r-- | doc/manual/local.mk | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/doc/manual/local.mk b/doc/manual/local.mk index 80c517702..13d937f8d 100644 --- a/doc/manual/local.mk +++ b/doc/manual/local.mk @@ -12,20 +12,21 @@ dist-files += $(d)/version.txt # Generate man pages. man-pages := $(foreach n, \ - nix-copy-closure.1 \ - nix.conf.5, \ + 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, \ $(d)/$(n)) -# 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, \ clean-files += $(d)/*.1 $(d)/*.5 $(d)/*.8 dist-files += $(man-pages) -$(d)/nix-copy-closure.1: $(d)/src/command-ref/nix-copy-closure.md +$(d)/%.1: $(d)/src/command-ref/%.md + $(trace-gen) lowdown -sT man $^ -o $@ + +$(d)/%.8: $(d)/src/command-ref/%.md $(trace-gen) lowdown -sT man $^ -o $@ $(d)/nix.conf.5: $(d)/src/command-ref/conf-file.md |