mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-01-01 11:47:11 -06:00
953c6846b7
This enables plugins to share authentication configuration cache code. Additionally, update the caching mechanism to be declarative and faster. Reviewed-By: Thierry Bordaz <tbordaz@redhat.com>
12 lines
354 B
Makefile
12 lines
354 B
Makefile
MAINTAINERCLEANFILES = *~ Makefile.in
|
|
AM_CPPFLAGS = -I/usr/include/dirsrv
|
|
|
|
noinst_LTLIBRARIES = libhotp.la libotp.la
|
|
libhotp_la_SOURCES = hotp.c hotp.h
|
|
libotp_la_SOURCES = otp_config.c otp_config.h otp_token.c otp_token.h
|
|
libotp_la_LIBADD = libhotp.la
|
|
|
|
check_PROGRAMS = t_hotp
|
|
TESTS = $(check_PROGRAMS)
|
|
t_hotp_LDADD = $(NSPR_LIBS) $(NSS_LIBS) libhotp.la
|