Imported Upstream version 2.1.3
[platform/upstream/gpg2.git] / dirmngr / Makefile.am
1 # Makefile.am - dirmngr
2 # Copyright (C) 2002 Klarälvdalens Datakonsult AB
3 # Copyright (C) 2004, 2007, 2010 g10 Code GmbH
4 #
5 # This file is part of GnuPG.
6 #
7 # GnuPG is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # GnuPG is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with this program; if not, see <http://www.gnu.org/licenses/>.
19
20 ## Process this file with automake to produce Makefile.in
21
22 EXTRA_DIST = OAUTHORS ONEWS ChangeLog.1 ChangeLog-2011
23
24 bin_PROGRAMS = dirmngr dirmngr-client
25
26 if USE_LDAPWRAPPER
27 libexec_PROGRAMS = dirmngr_ldap
28 endif
29
30 noinst_PROGRAMS = $(module_tests)
31 TESTS = $(module_tests)
32
33 AM_CPPFLAGS = -I$(top_srcdir)/common
34
35 include $(top_srcdir)/am/cmacros.am
36
37 AM_CFLAGS = $(LIBGCRYPT_CFLAGS) $(KSBA_CFLAGS) $(LIBASSUAN_CFLAGS)      \
38             $(GPG_ERROR_CFLAGS) $(NPTH_CFLAGS) $(NTBTLS_CFLAGS)         \
39             $(LIBGNUTLS_CFLAGS)
40
41
42 BUILT_SOURCES = no-libgcrypt.c
43
44 CLEANFILES = no-libgcrypt.c
45
46 if HAVE_W32_SYSTEM
47 ldap_url = ldap-url.h ldap-url.c
48 else
49 ldap_url =
50 endif
51
52 if USE_LDAPWRAPPER
53 extraldap_src = ldap-wrapper.c
54 else
55 extraldap_src = ldap-wrapper-ce.c  dirmngr_ldap.c
56 endif
57
58 noinst_HEADERS = dirmngr.h crlcache.h crlfetch.h misc.h
59
60 dirmngr_SOURCES = dirmngr.c dirmngr.h server.c crlcache.c crlfetch.c    \
61         certcache.c certcache.h \
62         cdb.h cdblib.c misc.c dirmngr-err.h  \
63         ocsp.c ocsp.h validate.c validate.h  \
64         ks-action.c ks-action.h ks-engine.h \
65         ks-engine-hkp.c ks-engine-http.c ks-engine-finger.c ks-engine-kdns.c \
66         ks-engine-ldap.c \
67         ldap-parse-uri.c ldap-parse-uri.h
68
69 if USE_LDAP
70 dirmngr_SOURCES += ldapserver.h ldapserver.c ldap.c w32-ldap-help.h \
71                    ldap-wrapper.h $(ldap_url) $(extraldap_src)
72 ldaplibs = $(LDAPLIBS)
73 else
74 ldaplibs =
75 endif
76
77
78 dirmngr_LDADD = $(libcommontlsnpth) $(libcommonpth) \
79         $(DNSLIBS) $(LIBASSUAN_LIBS) \
80         $(LIBGCRYPT_LIBS) $(KSBA_LIBS) $(NPTH_LIBS) \
81         $(NTBTLS_LIBS) $(LIBGNUTLS_LIBS) $(LIBINTL) $(LIBICONV)
82 if USE_LDAP
83 dirmngr_LDADD += $(ldaplibs)
84 endif
85 if !USE_LDAPWRAPPER
86 dirmngr_LDADD += $(ldaplibs)
87 endif
88 dirmngr_LDFLAGS = $(extra_bin_ldflags)
89
90 if USE_LDAPWRAPPER
91 dirmngr_ldap_SOURCES = dirmngr_ldap.c $(ldap_url)
92 dirmngr_ldap_CFLAGS = $(GPG_ERROR_CFLAGS) $(LIBGCRYPT_CFLAGS)
93 dirmngr_ldap_LDFLAGS =
94 dirmngr_ldap_LDADD = $(libcommon) no-libgcrypt.o \
95                      $(GPG_ERROR_LIBS) $(LDAPLIBS) $(LBER_LIBS) $(LIBINTL) \
96                      $(LIBICONV)
97 endif
98
99 dirmngr_client_SOURCES = dirmngr-client.c
100 dirmngr_client_LDADD = $(libcommon) no-libgcrypt.o \
101                         $(LIBASSUAN_LIBS) \
102                        $(GPG_ERROR_LIBS) $(NETLIBS) $(LIBINTL) $(LIBICONV)
103 dirmngr_client_LDFLAGS = $(extra_bin_ldflags)
104
105
106 no-libgcrypt.c : $(top_srcdir)/tools/no-libgcrypt.c
107         cat $(top_srcdir)/tools/no-libgcrypt.c > no-libgcrypt.c
108
109
110 t_common_src = t-support.h
111 # We need libcommontls, because we use the http functions.
112 t_common_ldadd = $(libcommontls) $(libcommon) no-libgcrypt.o \
113                  $(GPG_ERROR_LIBS) $(NETLIBS) \
114                  $(NTBTLS_LIBS) $(LIBGNUTLS_LIBS) \
115                  $(DNSLIBS) $(LIBINTL) $(LIBICONV)
116
117 module_tests = t-ldap-parse-uri
118 t_ldap_parse_uri_SOURCES = \
119         t-ldap-parse-uri.c ldap-parse-uri.c ldap-parse-uri.h \
120         $(ldap_url) $(t_common_src)
121 t_ldap_parse_uri_LDADD = $(ldaplibs) $(t_common_ldadd)
122
123 $(PROGRAMS) : $(libcommon) $(libcommonpth) $(libcommontls) $(libcommontlsnpth)