mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-26 00:41:25 -06:00
6c500ccf05
https://fedorahosted.org/freeipa/ticket/4167 Reviewed-By: Martin Kosek <mkosek@redhat.com>
22 lines
649 B
Makefile
22 lines
649 B
Makefile
AM_CFLAGS := @LDAP_CFLAGS@ @LIBVERTO_CFLAGS@
|
|
AM_LDFLAGS := @LDAP_LIBS@ @LIBVERTO_LIBS@ @KRAD_LIBS@
|
|
|
|
noinst_HEADERS = internal.h
|
|
libexec_PROGRAMS = ipa-otpd
|
|
dist_noinst_DATA = ipa-otpd.socket.in ipa-otpd@.service.in test.py
|
|
systemdsystemunit_DATA = ipa-otpd.socket ipa-otpd@.service
|
|
|
|
ipa_otpd_SOURCES = bind.c forward.c main.c parse.c query.c queue.c stdio.c
|
|
|
|
%.socket: %.socket.in
|
|
@sed -e 's|@krb5rundir[@]|$(krb5rundir)|g' \
|
|
-e 's|@UNLINK[@]|@UNLINK@|g' \
|
|
$< > $@
|
|
|
|
%.service: %.service.in
|
|
@sed -e 's|@libexecdir[@]|$(libexecdir)|g' \
|
|
-e 's|@sysconfdir[@]|$(sysconfdir)|g' \
|
|
$< > $@
|
|
|
|
CLEANFILES = $(systemdsystemunit_DATA)
|