1# OpenLDAP: pkg/ldap/contrib/ldapc++/src/Makefile.am,v 1.10.2.7 2008/07/09 22:18:57 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 53include_HEADERS = LDAPAsynConnection.h \ 54 LDAPAttribute.h \ 55 LDAPAttributeList.h \ 56 LDAPAttrType.h \ 57 LDAPConnection.h \ 58 LDAPConstraints.h \ 59 LDAPControl.h \ 60 LDAPControlSet.h \ 61 LDAPEntry.h \ 62 LDAPEntryList.h \ 63 LDAPException.h \ 64 LDAPExtResult.h \ 65 LDAPMessage.h \ 66 LDAPMessageQueue.h \ 67 LDAPModification.h \ 68 LDAPModList.h \ 69 LDAPObjClass.h \ 70 LDAPRebind.h \ 71 LDAPRebindAuth.h \ 72 LDAPReferenceList.h \ 73 LDAPResult.h \ 74 LDAPSaslBindResult.h \ 75 LDAPSchema.h \ 76 LDAPSearchReference.h \ 77 LDAPSearchResult.h \ 78 LDAPSearchResults.h \ 79 LDAPUrl.h \ 80 LDAPUrlList.h \ 81 LdifReader.h \ 82 LdifWriter.h \ 83 SaslInteraction.h \ 84 SaslInteractionHandler.h \ 85 StringList.h 86 87noinst_HEADERS = ac/time.h \ 88 debug.h \ 89 LDAPAddRequest.h \ 90 LDAPBindRequest.h \ 91 LDAPCompareRequest.h \ 92 LDAPDeleteRequest.h \ 93 LDAPExtRequest.h \ 94 LDAPModDNRequest.h \ 95 LDAPModifyRequest.h \ 96 LDAPRequest.h \ 97 LDAPSearchRequest.h 98 99libldapcpp_la_LIBADD = -lldap -llber 100libldapcpp_la_LDFLAGS = -version-info @OPENLDAP_CPP_API_VERSION@ 101 102