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:18:34 +0200
commitf742520760d1b146cd3c5e79a6c86a024570ff6a (patch)
treeefa16144d3c699bce241725409bbecf72bdaed31 /Makefile
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 'Makefile')
-rw-r--r--Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 674143b8d..a21cf7e33 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