summaryrefslogtreecommitdiff
path: root/Makefile.am
diff options
context:
space:
mode:
authorArthur de Jong <arthur@arthurdejong.org>2009-05-09 09:27:10 +0000
committerArthur de Jong <arthur@arthurdejong.org>2009-05-09 09:27:10 +0000
commit5f035facd24b3d15743eae48ddec15115c705e79 (patch)
tree370a83232b9e51677bbe73fced1debcc3331c08f /Makefile.am
parentbe1b2c1e63beb0fc0b90e21da4679e359a9f9fdc (diff)
import the PAM module from the nss-ldapd branch (r875) based on the OpenLDAP nssov tree and allow configuring which modules should be built (PAM module disabled by default)
git-svn-id: http://arthurdejong.org/svn/nss-pam-ldapd/nss-ldapd@876 ef36b2f9-881f-0410-afb5-c4e39611909c
Diffstat (limited to 'Makefile.am')
-rw-r--r--Makefile.am14
1 files changed, 12 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am
index c5caee4..8ae5037 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -2,7 +2,7 @@
#
# Copyright (C) 2006 Luke Howard
# Copyright (C) 2006 West Consulting
-# Copyright (C) 2006, 2007, 2008 Arthur de Jong
+# Copyright (C) 2006, 2007, 2008, 2009 Arthur de Jong
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
@@ -19,7 +19,17 @@
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
# 02110-1301 USA
-SUBDIRS = compat common nss nslcd man tests
+if ENABLE_NSS
+ MAYBE_NSS = nss
+endif
+if ENABLE_PAM
+ MAYBE_PAM = pam
+endif
+if ENABLE_NSLCD
+ ENABLE_NSLCD = nslcd
+endif
+
+SUBDIRS = compat common $(MAYBE_NSS) $(MAYBE_PAM) $(ENABLE_NSLCD) man tests
DEBIAN_FILES = debian/changelog debian/compat debian/control \
debian/copyright debian/rules \