Imported Upstream version 2.1.1
[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 AM_CPPFLAGS = -I$(top_srcdir)/gl -I$(top_srcdir)/intl -I$(top_srcdir)/common
31
32 include $(top_srcdir)/am/cmacros.am
33
34 AM_CFLAGS = $(LIBGCRYPT_CFLAGS) $(KSBA_CFLAGS) \
35             $(LIBASSUAN_CFLAGS) $(GPG_ERROR_CFLAGS) $(NPTH_CFLAGS)
36
37 BUILT_SOURCES = no-libgcrypt.c
38
39 CLEANFILES = no-libgcrypt.c
40
41 if HAVE_W32_SYSTEM
42 ldap_url = ldap-url.h ldap-url.c
43 else
44 ldap_url =
45 endif
46
47 if USE_LDAPWRAPPER
48 extraldap_src = ldap-wrapper.c
49 else
50 extraldap_src = ldap-wrapper-ce.c  dirmngr_ldap.c
51 endif
52
53 noinst_HEADERS = dirmngr.h crlcache.h crlfetch.h misc.h
54
55 dirmngr_SOURCES = dirmngr.c dirmngr.h server.c crlcache.c crlfetch.c    \
56         certcache.c certcache.h \
57         cdb.h cdblib.c misc.c dirmngr-err.h  \
58         ocsp.c ocsp.h validate.c validate.h  \
59         ks-action.c ks-action.h ks-engine.h \
60         ks-engine-hkp.c ks-engine-http.c ks-engine-finger.c ks-engine-kdns.c
61
62 if USE_LDAP
63 dirmngr_SOURCES += ldapserver.h ldapserver.c ldap.c w32-ldap-help.h \
64                    ldap-wrapper.h $(ldap_url) $(extraldap_src)
65 ldaplibs = $(LDAPLIBS)
66 else
67 ldaplibs =
68 endif
69
70
71 dirmngr_LDADD = $(libcommontlsnpth) $(libcommonpth) \
72         $(DNSLIBS) $(LIBASSUAN_LIBS) \
73         $(LIBGCRYPT_LIBS) $(KSBA_LIBS) $(NPTH_LIBS) \
74         $(NTBTLS_LIBS) $(LIBGNUTLS_LIBS) $(LIBINTL) $(LIBICONV)
75 if !USE_LDAPWRAPPER
76 dirmngr_LDADD += $(ldaplibs)
77 endif
78 dirmngr_LDFLAGS = $(extra_bin_ldflags)
79
80 if USE_LDAPWRAPPER
81 dirmngr_ldap_SOURCES = dirmngr_ldap.c $(ldap_url)
82 dirmngr_ldap_CFLAGS = $(GPG_ERROR_CFLAGS) $(LIBGCRYPT_CFLAGS)
83 dirmngr_ldap_LDFLAGS =
84 dirmngr_ldap_LDADD = $(libcommon) no-libgcrypt.o \
85                      $(GPG_ERROR_LIBS) $(LDAPLIBS) $(LBER_LIBS) $(LIBINTL) \
86                      $(LIBICONV)
87 endif
88
89 dirmngr_client_SOURCES = dirmngr-client.c
90 dirmngr_client_LDADD = $(libcommon) no-libgcrypt.o \
91                         $(LIBASSUAN_LIBS) \
92                        $(GPG_ERROR_LIBS) $(NETLIBS) $(LIBINTL) $(LIBICONV)
93 dirmngr_client_LDFLAGS = $(extra_bin_ldflags)
94
95
96 no-libgcrypt.c : $(top_srcdir)/tools/no-libgcrypt.c
97         cat $(top_srcdir)/tools/no-libgcrypt.c > no-libgcrypt.c
98
99
100 $(PROGRAMS) : $(libcommon) $(libcommonpth) $(libcommontls) $(libcommontlsnpth)