summaryrefslogtreecommitdiffstats
path: root/Makefile.am
diff options
context:
space:
mode:
authorSumit Bose <sbose@redhat.com>2013-04-22 17:57:53 +0200
committerSumit Bose <sbose@redhat.com>2013-04-23 12:35:38 +0200
commitd7e2c673f04d994c4447191a3c4e53db07026748 (patch)
treea20138a1793b704e4d8f79ef2c3db16d91b94686 /Makefile.am
parente0d43857c7d6fda0c71be84e4eb9f4bee63fa186 (diff)
downloadsssd-python_api.tar.gz
sssd-python_api.tar.xz
sssd-python_api.zip
Add python interface to nss_idmappython_api
Diffstat (limited to 'Makefile.am')
-rw-r--r--Makefile.am15
1 files changed, 14 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am
index 59024e0e5..0aa5b5b23 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -229,7 +229,8 @@ if BUILD_PYTHON_BINDINGS
pyexec_LTLIBRARIES = \
pysss.la \
pyhbac.la \
- pysss_murmur.la
+ pysss_murmur.la \
+ pysss_nss_idmap.la
endif
dist_noinst_SCRIPTS = \
@@ -1736,6 +1737,18 @@ pysss_murmur_la_LIBADD = \
pysss_murmur_la_LDFLAGS = \
-avoid-version \
-module
+
+pysss_nss_idmap_la_SOURCES = \
+ src/python/pysss_nss_idmap.c
+pysss_nss_idmap_la_CFLAGS = \
+ $(AM_CFLAGS) \
+ $(PYTHON_CFLAGS)
+pysss_nss_idmap_la_LIBADD = \
+ $(PYTHON_LIBS) \
+ libsss_nss_idmap.la
+pysss_nss_idmap_la_LDFLAGS = \
+ -avoid-version \
+ -module
endif
################