]> git.sur5r.net Git - openldap/blob - contrib/ldapc++/src/Makefile.am
8a1cf211dcd1a7fd6baf62e5d2c3d31080a9f2cc
[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                         LDAPEntry.h \
51                         LDAPEntryList.h \
52                         LDAPException.h \
53                         LDAPExtResult.h \
54                         LDAPMessage.h \
55                         LDAPMessageQueue.h \
56                         LDAPModification.h \
57                         LDAPModList.h \
58                         LDAPRebind.h \
59                         LDAPRebindAuth.h \
60                         LDAPReferralException.h \
61                         LDAPReferenceList.h \
62                         LDAPResult.h \
63                         LDAPSearchReference.h \
64                         LDAPSearchResult.h \
65                         LDAPUrl.h \
66                         LDAPUrlList.h \
67                         StringList.h 
68
69 noinst_HEADERS = LDAPAddRequest.h \
70                 LDAPBindRequest.h \
71                 LDAPCompareRequest.h \
72                 LDAPDeleteRequest.h \
73                 LDAPExtRequest.h \
74                 LDAPModDNRequest.h \
75                 LDAPModifyRequest.h \
76                 LDAPRequest.h \
77                 LDAPSearchRequest.h 
78
79 libldapcpp_la_LIBADD = -lldap -llber
80 libldapcpp_la_LDFLAGS = -version-info 0:1:0
81                         
82 noinst_PROGRAMS = main
83
84 main_SOURCES = main.cpp
85 main_LDADD = ./libldapcpp.la 
86
87