Imported Upstream version 2.1.16
[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 = $(LIBGCRYPT_CFLAGS) $(KSBA_CFLAGS) $(LIBASSUAN_CFLAGS)      \
39             $(GPG_ERROR_CFLAGS) $(NPTH_CFLAGS) $(NTBTLS_CFLAGS)         \
40             $(LIBGNUTLS_CFLAGS)
41
42
43 if HAVE_W32_SYSTEM
44 ldap_url = ldap-url.h ldap-url.c
45 else
46 ldap_url =
47 endif
48
49 if USE_LDAPWRAPPER
50 extraldap_src = ldap-wrapper.c
51 else
52 extraldap_src = ldap-wrapper-ce.c  dirmngr_ldap.c
53 endif
54
55 noinst_HEADERS = dirmngr.h crlcache.h crlfetch.h misc.h
56
57 dirmngr_SOURCES = dirmngr.c dirmngr.h server.c crlcache.c crlfetch.c    \
58         certcache.c certcache.h \
59         loadswdb.c \
60         cdb.h cdblib.c misc.c dirmngr-err.h  \
61         ocsp.c ocsp.h validate.c validate.h  \
62         dns-stuff.c dns-stuff.h \
63         http.c http.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
67 if USE_LDAP
68 dirmngr_SOURCES += ldapserver.h ldapserver.c ldap.c w32-ldap-help.h \
69                    ldap-wrapper.h ldap-parse-uri.c ldap-parse-uri.h \
70                    ks-engine-ldap.c $(ldap_url) $(extraldap_src)
71 ldaplibs = $(LDAPLIBS)
72 else
73 ldaplibs =
74 endif
75
76
77 dirmngr_LDADD = $(libcommonpth) \
78         $(DNSLIBS) $(LIBASSUAN_LIBS) \
79         $(LIBGCRYPT_LIBS) $(KSBA_LIBS) $(NPTH_LIBS) \
80         $(NTBTLS_LIBS) $(LIBGNUTLS_LIBS) $(LIBINTL) $(LIBICONV)
81 if USE_LDAP
82 dirmngr_LDADD += $(ldaplibs)
83 endif
84 if !USE_LDAPWRAPPER
85 dirmngr_LDADD += $(ldaplibs)
86 endif
87 dirmngr_LDFLAGS = $(extra_bin_ldflags)
88
89 if USE_LDAPWRAPPER
90 dirmngr_ldap_SOURCES = dirmngr_ldap.c $(ldap_url)
91 dirmngr_ldap_CFLAGS = $(GPG_ERROR_CFLAGS) $(LIBGCRYPT_CFLAGS)
92 dirmngr_ldap_LDFLAGS =
93 dirmngr_ldap_LDADD = $(libcommon) \
94                      $(GPG_ERROR_LIBS) $(LIBGCRYPT_LIBS) $(LDAPLIBS) \
95                      $(LBER_LIBS) $(LIBINTL) $(LIBICONV) $(NETLIBS)
96 endif
97
98 dirmngr_client_SOURCES = dirmngr-client.c
99 dirmngr_client_LDADD = $(libcommon) \
100                        $(LIBASSUAN_LIBS) $(GPG_ERROR_LIBS) \
101                        $(LIBGCRYPT_LIBS) $(NETLIBS) $(LIBINTL) $(LIBICONV)
102 dirmngr_client_LDFLAGS = $(extra_bin_ldflags)
103
104
105 t_common_src = t-support.h
106 t_common_ldadd = $(libcommon) $(LIBASSUAN_LIBS) $(LIBGCRYPT_LIBS) \
107                  $(GPG_ERROR_LIBS) $(NETLIBS) \
108                  $(NTBTLS_LIBS) $(LIBGNUTLS_LIBS) \
109                  $(DNSLIBS) $(LIBINTL) $(LIBICONV)
110
111 module_tests =
112
113 if USE_LDAP
114 module_tests += t-ldap-parse-uri
115 endif
116
117 # Test which need a network connections are only used in maintainer mode.
118 if MAINTAINER_MODE
119 module_net_tests = t-dns-stuff
120 else
121 module_net_tests =
122 endif
123
124 # Tests which are only for manually testing are only build in maintainer-mode.
125 if MAINTAINER_MODE
126 module_maint_tests = t-http
127 else
128 module_maint_tests =
129 endif
130
131
132 # http tests
133 t_http_SOURCES = t-http.c http.c dns-stuff.c
134 t_http_CFLAGS  = -DWITHOUT_NPTH=1 \
135                  $(LIBGCRYPT_CFLAGS) $(NTBTLS_CFLAGS) $(LIBGNUTLS_CFLAGS) \
136                  $(GPG_ERROR_CFLAGS)
137 t_http_LDADD   = $(t_common_ldadd) \
138                  $(NTBTLS_LIBS) $(LIBGNUTLS_LIBS) $(DNSLIBS)
139
140 t_ldap_parse_uri_SOURCES = \
141         t-ldap-parse-uri.c ldap-parse-uri.c ldap-parse-uri.h \
142         http.c dns-stuff.c \
143         $(ldap_url) $(t_common_src)
144 t_ldap_parse_uri_CFLAGS = -DWITHOUT_NPTH=1 \
145                           $(LIBGCRYPT_CFLAGS) $(GPG_ERROR_CFLAGS)
146 t_ldap_parse_uri_LDADD = $(ldaplibs) $(t_common_ldadd) $(DNSLIBS)
147
148 t_dns_stuff_CFLAGS = -DWITHOUT_NPTH=1 \
149                      $(LIBGCRYPT_CFLAGS) $(GPG_ERROR_CFLAGS)
150 t_dns_stuff_SOURCES = t-dns-stuff.c dns-stuff.c
151 t_dns_stuff_LDADD   = $(t_common_ldadd) $(DNSLIBS)
152
153 $(PROGRAMS) : $(libcommon) $(libcommonpth)