mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
Implementation of ticket: https://fedorahosted.org/freeipa/ticket/4302 Design page: http://www.freeipa.org/page/V4/Manage_replication_topology Reviewed-By: Thierry Bordaz <tbordaz@redhat.com>
52 lines
893 B
Makefile
52 lines
893 B
Makefile
NULL =
|
|
|
|
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)"\" \
|
|
$(LDAP_CFLAGS) \
|
|
$(WARN_CFLAGS) \
|
|
$(NULL)
|
|
|
|
plugindir = $(libdir)/dirsrv/plugins
|
|
plugin_LTLIBRARIES = \
|
|
libtopology.la \
|
|
$(NULL)
|
|
|
|
libtopology_la_SOURCES = \
|
|
topology_agmt.c \
|
|
topology_init.c \
|
|
topology_cfg.c \
|
|
topology_post.c \
|
|
topology_pre.c \
|
|
topology_util.c \
|
|
$(NULL)
|
|
|
|
libtopology_la_LDFLAGS = -avoid-version
|
|
|
|
#libtopology_la_LIBADD = \
|
|
# $(LDAP_LIBS) \
|
|
# $(NULL)
|
|
|
|
appdir = $(IPA_DATA_DIR)
|
|
app_DATA = \
|
|
ipa-topology-conf.ldif \
|
|
$(NULL)
|
|
|
|
EXTRA_DIST = \
|
|
README \
|
|
$(app_DATA) \
|
|
$(NULL)
|
|
|
|
MAINTAINERCLEANFILES = \
|
|
*~ \
|
|
Makefile.in
|