mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-01-16 11:21:56 -06:00
e732458a8e
https://fedorahosted.org/freeipa/ticket/4504 Reviewed-By: Petr Viktorin <pviktori@redhat.com>
42 lines
926 B
Makefile
42 lines
926 B
Makefile
# 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-csreplica-manage.1 \
|
|
ipa-replica-prepare.1 \
|
|
ipa-server-certinstall.1 \
|
|
ipa-server-install.1 \
|
|
ipa-dns-install.1 \
|
|
ipa-adtrust-install.1 \
|
|
ipa-ca-install.1 \
|
|
ipa-kra-install.1 \
|
|
ipa-ldap-updater.1 \
|
|
ipa-compat-manage.1 \
|
|
ipa-nis-manage.1 \
|
|
ipa-managed-entries.1 \
|
|
ipa-backup.1 \
|
|
ipa-restore.1 \
|
|
ipa-advise.1 \
|
|
ipa-otptoken-import.1 \
|
|
ipa-cacert-manage.1 \
|
|
$(NULL)
|
|
|
|
man8_MANS = \
|
|
ipactl.8 \
|
|
ipa-upgradeconfig.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)
|