summaryrefslogtreecommitdiffstats
path: root/ipatests/man/Makefile.am
diff options
context:
space:
mode:
authorPetr Viktorin <pviktori@redhat.com>2013-08-13 18:32:36 +0200
committerPetr Viktorin <pviktori@redhat.com>2013-08-29 15:18:34 +0200
commitf742520760d1b146cd3c5e79a6c86a024570ff6a (patch)
treeefa16144d3c699bce241725409bbecf72bdaed31 /ipatests/man/Makefile.am
parenta3d489443c85629aa176df048c6b3505a7ee4586 (diff)
downloadfreeipa-f742520760d1b146cd3c5e79a6c86a024570ff6a.tar.gz
freeipa-f742520760d1b146cd3c5e79a6c86a024570ff6a.tar.xz
freeipa-f742520760d1b146cd3c5e79a6c86a024570ff6a.zip
Add man pages for testing tools
Add man pages for ipa-run-tests, ipa-test-task, and ipa-test-config. https://fedorahosted.org/freeipa/ticket/3855 (part 5)
Diffstat (limited to 'ipatests/man/Makefile.am')
-rw-r--r--ipatests/man/Makefile.am18
1 files changed, 18 insertions, 0 deletions
diff --git a/ipatests/man/Makefile.am b/ipatests/man/Makefile.am
new file mode 100644
index 000000000..fcd3d1d36
--- /dev/null
+++ b/ipatests/man/Makefile.am
@@ -0,0 +1,18 @@
+# This file will be processed with automake-1.7 to create Makefile.in
+
+AUTOMAKE_OPTIONS = 1.7
+
+NULL=
+
+man1_MANS = \
+ ipa-run-tests.1 \
+ ipa-test-config.1 \
+ ipa-test-task.1 \
+ $(NULL)
+
+install-data-hook:
+ @for i in $(man1_MANS) ; do gzip -f $(DESTDIR)$(man1dir)/$$i ; done
+
+MAINTAINERCLEANFILES = \
+ Makefile.in \
+ $(NULL)