mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-23 23:50:03 -06:00
44a3e0fe1d
These are platform specific, add values for Debian and default values for Fedora/RHEL. Also, use prettier output when checking the extra python install options. Reviewed-By: Martin Basti <mbasti@redhat.com>
35 lines
859 B
Makefile
35 lines
859 B
Makefile
# This file will be processed with automake-1.7 to create Makefile.in
|
|
#
|
|
AUTOMAKE_OPTIONS = 1.7
|
|
|
|
appdir = $(libexecdir)/ipa/
|
|
dist_app_SCRIPTS = \
|
|
ipa-dnskeysyncd \
|
|
ipa-dnskeysync-replica \
|
|
ipa-ods-exporter
|
|
|
|
dist_noinst_DATA = \
|
|
ipa-dnskeysyncd.service.in \
|
|
ipa-ods-exporter.service.in \
|
|
ipa-ods-exporter.socket.in
|
|
|
|
systemdsystemunit_DATA = \
|
|
ipa-dnskeysyncd.service \
|
|
ipa-ods-exporter.service \
|
|
ipa-ods-exporter.socket
|
|
|
|
CLEANFILES = $(systemdsystemunit_DATA)
|
|
|
|
%: %.in Makefile
|
|
sed \
|
|
-e 's|@libexecdir[@]|$(libexecdir)|g' \
|
|
-e 's|@localstatedir[@]|$(localstatedir)|g' \
|
|
-e 's|@sysconfenvdir[@]|$(sysconfenvdir)|g' \
|
|
-e 's|@ODS_USER[@]|$(ODS_USER)|g' \
|
|
-e 's|@NAMED_GROUP[@]|$(NAMED_GROUP)|g' \
|
|
'$(srcdir)/$@.in' >$@
|
|
|
|
dnssecconfdir = $(IPA_SYSCONF_DIR)/dnssec
|
|
install-data-hook:
|
|
$(INSTALL) -d -m 755 $(DESTDIR)$(dnssecconfdir)
|