mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
There are no major changes in this commit other than changing filenames and symbols to have consistent namespaces. This prepares for larger changes to come in subsequent commits. Reviewed-By: Thierry Bordaz <tbordaz@redhat.com>
24 lines
720 B
Makefile
24 lines
720 B
Makefile
MAINTAINERCLEANFILES = *~ Makefile.in
|
|
PLUGIN_COMMON_DIR = ../common
|
|
AM_CPPFLAGS = \
|
|
-I. \
|
|
-I$(srcdir) \
|
|
-I$(PLUGIN_COMMON_DIR) \
|
|
-I/usr/include/dirsrv \
|
|
-DPREFIX=\""$(prefix)"\" \
|
|
-DBINDIR=\""$(bindir)"\" \
|
|
-DLIBDIR=\""$(libdir)"\" \
|
|
-DLIBEXECDIR=\""$(libexecdir)"\" \
|
|
-DDATADIR=\""$(datadir)"\" \
|
|
$(AM_CFLAGS) \
|
|
$(LDAP_CFLAGS) \
|
|
$(WARN_CFLAGS)
|
|
|
|
plugindir = $(libdir)/dirsrv/plugins
|
|
plugin_LTLIBRARIES = libipa_otp_lasttoken.la
|
|
libipa_otp_lasttoken_la_SOURCES = ipa_otp_lasttoken.c
|
|
libipa_otp_lasttoken_la_LDFLAGS = -avoid-version -export-symbols ipa-otp-lasttoken.sym
|
|
libipa_otp_lasttoken_la_LIBADD = \
|
|
$(LDAP_LIBS) \
|
|
$(builddir)/../libotp/libotp.la
|