mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-26 17:01:14 -06:00
19 lines
363 B
Makefile
19 lines
363 B
Makefile
|
# 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)
|