Imported Upstream version 2.1.10
[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-2011 tls-ca.pem
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) $(module_maint_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         dns-stuff.c dns-stuff.h \
65         http.c http.h \
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_LDAP
70 dirmngr_SOURCES += ldapserver.h ldapserver.c ldap.c w32-ldap-help.h \
71                    ldap-wrapper.h ldap-parse-uri.c ldap-parse-uri.h \
72                    ks-engine-ldap.c $(ldap_url) $(extraldap_src)
73 ldaplibs = $(LDAPLIBS)
74 else
75 ldaplibs =
76 endif
77
78
79 dirmngr_LDADD = $(libcommonpth) \
80         $(DNSLIBS) $(LIBASSUAN_LIBS) \
81         $(LIBGCRYPT_LIBS) $(KSBA_LIBS) $(NPTH_LIBS) \
82         $(NTBTLS_LIBS) $(LIBGNUTLS_LIBS) $(LIBINTL) $(LIBICONV)
83 if USE_LDAP
84 dirmngr_LDADD += $(ldaplibs)
85 endif
86 if !USE_LDAPWRAPPER
87 dirmngr_LDADD += $(ldaplibs)
88 endif
89 dirmngr_LDFLAGS = $(extra_bin_ldflags)
90
91 if USE_LDAPWRAPPER
92 dirmngr_ldap_SOURCES = dirmngr_ldap.c $(ldap_url)
93 dirmngr_ldap_CFLAGS = $(GPG_ERROR_CFLAGS) $(LIBGCRYPT_CFLAGS)
94 dirmngr_ldap_LDFLAGS =
95 dirmngr_ldap_LDADD = $(libcommon) no-libgcrypt.o \
96                      $(GPG_ERROR_LIBS) $(LDAPLIBS) $(LBER_LIBS) $(LIBINTL) \
97                      $(LIBICONV)
98 endif
99
100 dirmngr_client_SOURCES = dirmngr-client.c
101 dirmngr_client_LDADD = $(libcommon) no-libgcrypt.o \
102                         $(LIBASSUAN_LIBS) \
103                        $(GPG_ERROR_LIBS) $(NETLIBS) $(LIBINTL) $(LIBICONV)
104 dirmngr_client_LDFLAGS = $(extra_bin_ldflags)
105
106
107 no-libgcrypt.c : $(top_srcdir)/tools/no-libgcrypt.c
108         cat $(top_srcdir)/tools/no-libgcrypt.c > no-libgcrypt.c
109
110
111 t_common_src = t-support.h
112 t_common_ldadd = $(libcommon) no-libgcrypt.o $(LIBASSUAN_LIBS) \
113                  $(GPG_ERROR_LIBS) $(NETLIBS) \
114                  $(NTBTLS_LIBS) $(LIBGNUTLS_LIBS) \
115                  $(DNSLIBS) $(LIBINTL) $(LIBICONV)
116
117 module_tests = t-dns-stuff
118
119 if USE_LDAP
120 module_tests += t-ldap-parse-uri
121 endif
122
123 if MAINTAINER_MODE
124 module_maint_tests = t-http
125 else
126 module_maint_tests =
127 endif
128
129
130 # http tests
131 t_http_SOURCES = t-http.c http.c dns-stuff.c
132 t_http_CFLAGS  = -DWITHOUT_NPTH=1 \
133                  $(LIBGCRYPT_CFLAGS) $(NTBTLS_CFLAGS) $(LIBGNUTLS_CFLAGS) \
134                  $(GPG_ERROR_CFLAGS)
135 t_http_LDADD   = $(t_common_ldadd) \
136                  $(NTBTLS_LIBS) $(LIBGNUTLS_LIBS) $(DNSLIBS)
137
138 t_ldap_parse_uri_SOURCES = \
139         t-ldap-parse-uri.c ldap-parse-uri.c ldap-parse-uri.h \
140         http.c dns-stuff.c \
141         $(ldap_url) $(t_common_src)
142 t_ldap_parse_uri_CFLAGS = -DWITHOUT_NPTH=1
143 t_ldap_parse_uri_LDADD = $(ldaplibs) $(t_common_ldadd) $(DNSLIBS)
144
145 t_dns_stuff_CFLAGS = -DWITHOUT_NPTH=1
146 t_dns_stuff_SOURCES = t-dns-stuff.c dns-stuff.c
147 t_dns_stuff_LDADD   = $(t_common_ldadd) $(DNSLIBS)
148
149 $(PROGRAMS) : $(libcommon) $(libcommonpth)