Imported Upstream version 2.1.19
[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 <https://www.gnu.org/licenses/>.
19
20 ## Process this file with automake to produce Makefile.in
21
22 EXTRA_DIST = OAUTHORS ONEWS ChangeLog-2011 tls-ca.pem
23 dist_pkgdata_DATA = sks-keyservers.netCA.pem
24
25 bin_PROGRAMS = dirmngr dirmngr-client
26
27 if USE_LDAPWRAPPER
28 libexec_PROGRAMS = dirmngr_ldap
29 endif
30
31 noinst_PROGRAMS = $(module_tests) $(module_net_tests) $(module_maint_tests)
32 TESTS = $(module_tests) $(module_net_tests)
33
34 AM_CPPFLAGS = -I$(top_srcdir)/common
35
36 include $(top_srcdir)/am/cmacros.am
37
38 AM_CFLAGS = $(USE_C99_CFLAGS) \
39             $(LIBGCRYPT_CFLAGS) $(KSBA_CFLAGS) $(LIBASSUAN_CFLAGS)      \
40             $(GPG_ERROR_CFLAGS) $(NPTH_CFLAGS) $(NTBTLS_CFLAGS)         \
41             $(LIBGNUTLS_CFLAGS)
42
43
44 if HAVE_W32_SYSTEM
45 ldap_url = ldap-url.h ldap-url.c
46 else
47 ldap_url =
48 endif
49
50 if USE_LDAPWRAPPER
51 extraldap_src = ldap-wrapper.c
52 else
53 extraldap_src = ldap-wrapper-ce.c  dirmngr_ldap.c
54 endif
55
56 noinst_HEADERS = dirmngr.h crlcache.h crlfetch.h misc.h
57
58 dirmngr_SOURCES = dirmngr.c dirmngr.h server.c crlcache.c crlfetch.c    \
59         certcache.c certcache.h \
60         loadswdb.c \
61         cdb.h cdblib.c misc.c dirmngr-err.h  \
62         ocsp.c ocsp.h validate.c validate.h  \
63         dns-stuff.c dns-stuff.h \
64         http.c http.h \
65         http-ntbtls.c \
66         ks-action.c ks-action.h ks-engine.h \
67         ks-engine-hkp.c ks-engine-http.c ks-engine-finger.c ks-engine-kdns.c
68
69 if USE_LIBDNS
70 dirmngr_SOURCES += dns.c dns.h
71 endif
72
73 if USE_LDAP
74 dirmngr_SOURCES += ldapserver.h ldapserver.c ldap.c w32-ldap-help.h \
75                    ldap-wrapper.h ldap-parse-uri.c ldap-parse-uri.h \
76                    ks-engine-ldap.c $(ldap_url) $(extraldap_src)
77 ldaplibs = $(LDAPLIBS)
78 else
79 ldaplibs =
80 endif
81
82
83 dirmngr_LDADD = $(libcommonpth) \
84         $(DNSLIBS) $(LIBASSUAN_LIBS) \
85         $(LIBGCRYPT_LIBS) $(KSBA_LIBS) $(NPTH_LIBS) \
86         $(NTBTLS_LIBS) $(LIBGNUTLS_LIBS) $(LIBINTL) $(LIBICONV)
87 if USE_LDAP
88 dirmngr_LDADD += $(ldaplibs)
89 endif
90 if !USE_LDAPWRAPPER
91 dirmngr_LDADD += $(ldaplibs)
92 endif
93 dirmngr_LDFLAGS = $(extra_bin_ldflags)
94
95 if USE_LDAPWRAPPER
96 dirmngr_ldap_SOURCES = dirmngr_ldap.c $(ldap_url)
97 dirmngr_ldap_CFLAGS = $(GPG_ERROR_CFLAGS) $(LIBGCRYPT_CFLAGS)
98 dirmngr_ldap_LDFLAGS =
99 dirmngr_ldap_LDADD = $(libcommon) \
100                      $(GPG_ERROR_LIBS) $(LIBGCRYPT_LIBS) $(LDAPLIBS) \
101                      $(LBER_LIBS) $(LIBINTL) $(LIBICONV) $(NETLIBS)
102 endif
103
104 dirmngr_client_SOURCES = dirmngr-client.c
105 dirmngr_client_LDADD = $(libcommon) \
106                        $(LIBASSUAN_LIBS) $(GPG_ERROR_LIBS) \
107                        $(LIBGCRYPT_LIBS) $(NETLIBS) $(LIBINTL) $(LIBICONV)
108 dirmngr_client_LDFLAGS = $(extra_bin_ldflags)
109
110
111 t_common_src = t-support.h
112 if USE_LIBDNS
113 t_common_src += dns.c dns.h
114 endif
115 t_common_ldadd = $(libcommon) $(LIBASSUAN_LIBS) $(LIBGCRYPT_LIBS) \
116                  $(GPG_ERROR_LIBS) $(NETLIBS) \
117                  $(NTBTLS_LIBS) $(LIBGNUTLS_LIBS) \
118                  $(DNSLIBS) $(LIBINTL) $(LIBICONV)
119
120 module_tests =
121
122 if USE_LDAP
123 module_tests += t-ldap-parse-uri
124 endif
125
126 # Test which need a network connections are only used in maintainer mode.
127 if MAINTAINER_MODE
128 module_net_tests = t-dns-stuff
129 else
130 module_net_tests =
131 endif
132
133 # Tests which are only for manually testing are only build in maintainer-mode.
134 if MAINTAINER_MODE
135 module_maint_tests = t-http
136 else
137 module_maint_tests =
138 endif
139
140
141 # http tests
142 # We need to add the KSBA flags in case we are building against GNUTLS.
143 # In that case NTBTLS flags are empty, but we need ksba anyway.
144 t_http_SOURCES = $(t_common_src) t-http.c http.c dns-stuff.c
145 t_http_CFLAGS  = -DWITHOUT_NPTH=1  $(USE_C99_CFLAGS) \
146                  $(LIBGCRYPT_CFLAGS) $(NTBTLS_CFLAGS) $(LIBGNUTLS_CFLAGS) \
147                  $(GPG_ERROR_CFLAGS) $(KSBA_CFLAGS)
148 t_http_LDADD   = $(t_common_ldadd) \
149                  $(NTBTLS_LIBS) $(KSBA_LIBS) $(LIBGNUTLS_LIBS) $(DNSLIBS)
150
151 t_ldap_parse_uri_SOURCES = \
152         t-ldap-parse-uri.c ldap-parse-uri.c ldap-parse-uri.h \
153         http.c dns-stuff.c \
154         $(ldap_url) $(t_common_src)
155 t_ldap_parse_uri_CFLAGS = -DWITHOUT_NPTH=1  $(USE_C99_CFLAGS) \
156                           $(LIBGCRYPT_CFLAGS) $(GPG_ERROR_CFLAGS)
157 t_ldap_parse_uri_LDADD = $(ldaplibs) $(t_common_ldadd) $(DNSLIBS)
158
159 t_dns_stuff_CFLAGS = -DWITHOUT_NPTH=1  $(USE_C99_CFLAGS) \
160                      $(LIBGCRYPT_CFLAGS) $(GPG_ERROR_CFLAGS)
161 t_dns_stuff_SOURCES = $(t_common_src) t-dns-stuff.c dns-stuff.c
162 t_dns_stuff_LDADD   = $(t_common_ldadd) $(DNSLIBS)
163
164 $(PROGRAMS) : $(libcommon) $(libcommonpth)