1# OpenLDAP: pkg/ldap/contrib/ldapc++/src/Makefile.am,v 1.10.2.8 2010/04/14 23:50:44 quanah Exp
2
3###
4# Copyright 2000-2008, OpenLDAP Foundation, All Rights Reserved.
5# COPYING RESTRICTIONS APPLY, see COPYRIGHT file
6##
7
8lib_LTLIBRARIES = libldapcpp.la
9
10libldapcpp_la_SOURCES = LDAPAddRequest.cpp \
11			LDAPAsynConnection.cpp \
12			LDAPAttribute.cpp \
13			LDAPAttributeList.cpp \
14			LDAPAttrType.cpp \
15			LDAPBindRequest.cpp \
16			LDAPCompareRequest.cpp \
17			LDAPConnection.cpp \
18			LDAPConstraints.cpp \
19			LDAPControl.cpp \
20			LDAPControlSet.cpp \
21			LDAPDeleteRequest.cpp \
22			LDAPEntry.cpp \
23			LDAPEntryList.cpp \
24			LDAPException.cpp \
25			LDAPExtRequest.cpp \
26			LDAPExtResult.cpp \
27			LDAPMessage.cpp \
28			LDAPMessageQueue.cpp \
29			LDAPModDNRequest.cpp \
30			LDAPModification.cpp \
31			LDAPModifyRequest.cpp \
32			LDAPModList.cpp \
33			LDAPObjClass.cpp \
34			LDAPRebind.cpp \
35			LDAPRebindAuth.cpp \
36			LDAPReferenceList.cpp \
37			LDAPRequest.cpp \
38			LDAPResult.cpp \
39			LDAPSaslBindResult.cpp \
40			LDAPSchema.cpp \
41			LDAPSearchReference.cpp \
42			LDAPSearchRequest.cpp \
43			LDAPSearchResult.cpp \
44			LDAPSearchResults.cpp \
45			LDAPUrl.cpp \
46			LDAPUrlList.cpp \
47			LdifReader.cpp \
48			LdifWriter.cpp \
49			SaslInteraction.cpp \
50			SaslInteractionHandler.cpp \
51			StringList.cpp \
52			TlsOptions.cpp
53
54include_HEADERS = LDAPAsynConnection.h \
55			LDAPAttribute.h \
56			LDAPAttributeList.h \
57			LDAPAttrType.h \
58			LDAPConnection.h \
59			LDAPConstraints.h \
60			LDAPControl.h \
61			LDAPControlSet.h \
62			LDAPEntry.h \
63			LDAPEntryList.h \
64			LDAPException.h \
65			LDAPExtResult.h \
66			LDAPMessage.h \
67			LDAPMessageQueue.h \
68			LDAPModification.h \
69			LDAPModList.h \
70			LDAPObjClass.h \
71			LDAPRebind.h \
72			LDAPRebindAuth.h \
73			LDAPReferenceList.h \
74			LDAPResult.h \
75			LDAPSaslBindResult.h \
76			LDAPSchema.h \
77			LDAPSearchReference.h \
78			LDAPSearchResult.h \
79			LDAPSearchResults.h \
80			LDAPUrl.h \
81			LDAPUrlList.h \
82			LdifReader.h \
83			LdifWriter.h \
84			SaslInteraction.h \
85			SaslInteractionHandler.h \
86			StringList.h \
87			TlsOptions.h
88
89noinst_HEADERS = ac/time.h \
90		debug.h \
91		LDAPAddRequest.h \
92		LDAPBindRequest.h \
93		LDAPCompareRequest.h \
94		LDAPDeleteRequest.h \
95		LDAPExtRequest.h \
96		LDAPModDNRequest.h \
97		LDAPModifyRequest.h \
98		LDAPRequest.h \
99		LDAPSearchRequest.h
100
101libldapcpp_la_LIBADD = -lldap -llber
102libldapcpp_la_LDFLAGS = -version-info @OPENLDAP_CPP_API_VERSION@
103
104