]> git.sur5r.net Git - openldap/blob - contrib/ldapc++/src/Makefile.am
Moved sample code to examples dir
[openldap] / contrib / ldapc++ / src / Makefile.am
1 ##
2 # Copyright 2000, OpenLDAP Foundation, All Rights Reserved.
3 # COPYING RESTRICTIONS APPLY, see COPYRIGHT file
4 ##
5
6 lib_LTLIBRARIES = libldapcpp.la
7
8 libldapcpp_la_SOURCES = LDAPAddRequest.cpp \
9                         LDAPAsynConnection.cpp \
10                         LDAPAttribute.cpp \
11                         LDAPAttributeList.cpp \
12                         LDAPBindRequest.cpp \
13                         LDAPCompareRequest.cpp \
14             LDAPConnection.cpp \
15                         LDAPConstraints.cpp \
16                         LDAPControl.cpp \
17                         LDAPControlSet.cpp \
18                         LDAPDeleteRequest.cpp \
19                         LDAPEntry.cpp \
20                         LDAPEntryList.cpp \
21                         LDAPException.cpp \
22                         LDAPExtRequest.cpp \
23                         LDAPExtResult.cpp \
24                         LDAPMessage.cpp \
25                         LDAPMessageQueue.cpp \
26                         LDAPModDNRequest.cpp \
27                         LDAPModification.cpp \
28                         LDAPModifyRequest.cpp \
29                         LDAPModList.cpp \
30                         LDAPRebind.cpp \
31                         LDAPRebindAuth.cpp \
32                         LDAPReferralException.cpp \
33             LDAPReferenceList.cpp \
34             LDAPRequest.cpp \
35                         LDAPResult.cpp \
36                         LDAPSearchReference.cpp \
37                         LDAPSearchRequest.cpp \
38                         LDAPSearchResult.cpp \
39                         LDAPSearchResults.cpp \
40                         LDAPUrl.cpp \
41                         LDAPUrlList.cpp \
42                         StringList.cpp 
43
44 include_HEADERS = LDAPAsynConnection.h \
45                         LDAPAttribute.h \
46                         LDAPAttributeList.h \
47                         LDAPConnection.h \
48                         LDAPConstraints.h \
49                         LDAPControl.h \
50                         LDAPControlSet.h \
51                         LDAPEntry.h \
52                         LDAPEntryList.h \
53                         LDAPException.h \
54                         LDAPExtResult.h \
55                         LDAPMessage.h \
56                         LDAPMessageQueue.h \
57                         LDAPModification.h \
58                         LDAPModList.h \
59                         LDAPRebind.h \
60                         LDAPRebindAuth.h \
61                         LDAPReferralException.h \
62                         LDAPReferenceList.h \
63                         LDAPResult.h \
64                         LDAPSearchReference.h \
65                         LDAPSearchResult.h \
66                         LDAPSearchResults.h \
67                         LDAPUrl.h \
68                         LDAPUrlList.h \
69                         StringList.h 
70
71 noinst_HEADERS = LDAPAddRequest.h \
72                 LDAPBindRequest.h \
73                 LDAPCompareRequest.h \
74                 LDAPDeleteRequest.h \
75                 LDAPExtRequest.h \
76                 LDAPModDNRequest.h \
77                 LDAPModifyRequest.h \
78                 LDAPRequest.h \
79                 LDAPSearchRequest.h 
80
81 libldapcpp_la_LIBADD = -lldap -llber
82 libldapcpp_la_LDFLAGS = -version-info 0:1:0
83