summaryrefslogtreecommitdiffstats
path: root/install/tools/man/Makefile.am
blob: be2524e865fa89165a3023eb2d3c04043d694165 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# This file will be processed with automake-1.7 to create Makefile.in

AUTOMAKE_OPTIONS = 1.7

NULL=

man1_MANS = 				\
	ipa-replica-conncheck.1		\
	ipa-replica-install.1		\
	ipa-replica-manage.1		\
	ipa-replica-prepare.1		\
	ipa-server-certinstall.1	\
	ipa-server-install.1		\
	ipa-dns-install.1		\
	ipa-ldap-updater.1		\
	ipa-compat-manage.1		\
	ipa-nis-manage.1		\
	ipa-host-net-manage.1		\
	ipa-compliance.1

man8_MANS =				\
	ipactl.8			\
	ipa_kpasswd.8			\
        $(NULL)

install-data-hook:
	@for i in $(man1_MANS) ; do gzip -f $(DESTDIR)$(man1dir)/$$i ; done
	@for i in $(man8_MANS) ; do gzip -f $(DESTDIR)$(man8dir)/$$i ; done

MAINTAINERCLEANFILES =          \
        Makefile.in             \
        $(NULL)