mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-25 16:31:08 -06:00
b0cb6afa23
This is autoconf way of doing things. It should allow us to enable subdir-objects automake option and stay compatible with future versions of automake. https://fedorahosted.org/freeipa/ticket/6418 Reviewed-By: Lukas Slebodnik <lslebodn@redhat.com> Reviewed-By: Stanislav Laznicka <slaznick@redhat.com> Reviewed-By: Christian Heimes <cheimes@redhat.com>
15 lines
337 B
Makefile
15 lines
337 B
Makefile
AUTOMAKE_OPTIONS = 1.7 subdir-objects
|
|
|
|
AM_CPPFLAGS = $(CRYPTO_CFLAGS) $(KRB5_CFLAGS) $(LDAP_CFLAGS) $(NSS_CFLAGS)
|
|
|
|
noinst_LTLIBRARIES = libutil.la
|
|
|
|
libutil_la_SOURCES = ipa_krb5.c \
|
|
ipa_krb5.h \
|
|
ipa_mspac.h \
|
|
ipa_pwd.c \
|
|
ipa_pwd.h \
|
|
ipa_pwd_ntlm.c
|
|
|
|
libutil_la_LIBADD = $(CRYPTO_LIBS) $(KRB5_LIBS) $(LDAP_LIBS) $(NSS_LIBS)
|