aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorTeddy Wing2018-11-15 08:18:35 +0100
committerTeddy Wing2018-11-15 16:49:33 +0100
commite12f656eb9b692c11c0704421c51c59d7052c121 (patch)
tree41444f173fbb7c034fc84e76da59851149ccc25f /Makefile
parente3f1aac1caada3efaac7819d101cee850181f0da (diff)
downloadDomeKey-e12f656eb9b692c11c0704421c51c59d7052c121.tar.bz2
Makefile: Add man pages to `dist/` directory
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 5d0beb4..806c533 100644
--- a/Makefile
+++ b/Makefile
@@ -109,10 +109,16 @@ doc/dome-key-mappings.7: doc/dome-key-mappings.7.txt
# Distribution
.PHONY: dist-all
-dist-all: dist/dome-key
+dist-all: dist/dome-key dist/dome-key.1 dist/dome-key-mappings.7
dist:
mkdir -p dist
dist/dome-key: $(ARCHIVE_PRODUCT) dist
cp $< $@
+
+dist/dome-key.1: doc/dome-key.1 dist
+ cp $< $@
+
+dist/dome-key-mappings.7: doc/dome-key-mappings.7 dist
+ cp $< $@