mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-01-13 01:31:56 -06:00
ba037a3551
Add dependency on external libraries after dependency on internal objects so the linker can correctly pick up all symbols. https://pagure.io/freeipa/issue/7189 Original patch by Rob Crittenden Signed-off-by: Christian Heimes <cheimes@redhat.com> Reviewed-By: Alexander Bokovoy <abokovoy@redhat.com>
19 lines
458 B
Makefile
19 lines
458 B
Makefile
NULL =
|
|
|
|
PLUGIN_COMMON_DIR = $(srcdir)/../common
|
|
AM_CPPFLAGS = \
|
|
-I$(PLUGIN_COMMON_DIR) \
|
|
$(DIRSRV_CFLAGS) \
|
|
$(NSPR_CFLAGS) \
|
|
$(NSS_CFLAGS) \
|
|
$(NULL)
|
|
|
|
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 = libhotp.la $(NSPR_LIBS) $(NSS_LIBS)
|