2016-11-03 05:03:03 -05:00
|
|
|
# This file will be processed with automake-1.7 to create Makefile.in
|
|
|
|
#
|
|
|
|
AUTOMAKE_OPTIONS = 1.7
|
|
|
|
|
|
|
|
dist_noinst_DATA = \
|
|
|
|
ipa-custodia.service.in \
|
|
|
|
ipa.service.in
|
|
|
|
|
|
|
|
systemdsystemunit_DATA = \
|
|
|
|
ipa-custodia.service \
|
|
|
|
ipa.service
|
|
|
|
|
|
|
|
CLEANFILES = $(systemdsystemunit_DATA)
|
|
|
|
|
|
|
|
%: %.in Makefile
|
|
|
|
sed \
|
|
|
|
-e 's|@bindir[@]|$(bindir)|g' \
|
|
|
|
-e 's|@IPA_SYSCONF_DIR[@]|$(IPA_SYSCONF_DIR)|g' \
|
|
|
|
-e 's|@localstatedir[@]|$(localstatedir)|g' \
|
|
|
|
-e 's|@sbindir[@]|$(sbindir)|g' \
|
2017-02-28 05:07:19 -06:00
|
|
|
-e 's|@libexecdir[@]|$(libexecdir)|g' \
|
2016-11-03 05:03:03 -05:00
|
|
|
-e 's|@sysconfenvdir[@]|$(sysconfenvdir)|g' \
|
|
|
|
'$(srcdir)/$@.in' >$@
|