summaryrefslogtreecommitdiffstats
path: root/Makefile
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:22:22 +0200
commit5945988d7373d65d5a38b11ade84fabe9ac7bb68 (patch)
tree6903d421634b716f838f2dac0ca5454b96f82d3b /Makefile
parentc0dddb4d69bbd1015b6ce0476e6537b1e1448b0a (diff)
downloadfreeipa.git-5945988d7373d65d5a38b11ade84fabe9ac7bb68.tar.gz
freeipa.git-5945988d7373d65d5a38b11ade84fabe9ac7bb68.tar.xz
freeipa.git-5945988d7373d65d5a38b11ade84fabe9ac7bb68.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 'Makefile')
-rw-r--r--Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 674143b8..a21cf7e3 100644
--- a/Makefile
+++ b/Makefile
@@ -71,6 +71,9 @@ client-autogen: version-update
cd ipa-client; if [ ! -e Makefile ]; then ../autogen.sh --prefix=/usr --sysconfdir=/etc --localstatedir=/var --libdir=$(LIBDIR); fi
cd install; if [ ! -e Makefile ]; then ../autogen.sh --prefix=/usr --sysconfdir=/etc --localstatedir=/var --libdir=$(LIBDIR); fi
+tests-man-autogen: version-update
+ cd ipatests/man; if [ ! -e Makefile ]; then ../../autogen.sh --prefix=/usr --sysconfdir=/etc --localstatedir=/var --libdir=$(LIBDIR); fi
+
install: all server-install tests-install
@for subdir in $(SUBDIRS); do \
(cd $$subdir && $(MAKE) $@) || exit 1; \
@@ -153,8 +156,9 @@ server-install: server
$(PYTHON) setup.py install --root $(DESTDIR); \
fi
-tests: version-update
+tests: version-update tests-man-autogen
cd ipatests; $(PYTHON) setup.py build
+ cd ipatests/man && $(MAKE) all
tests-install: tests
if [ "$(DESTDIR)" = "" ]; then \
@@ -162,6 +166,7 @@ tests-install: tests
else \
cd ipatests; $(PYTHON) setup.py install --root $(DESTDIR); \
fi
+ cd ipatests/man && $(MAKE) install
archive:
-mkdir -p dist