Imported Upstream version 3.3.5
[platform/upstream/gnutls.git] / lib / Makefile.am
1 ## Process this file with automake to produce Makefile.in
2 # Copyright (C) 2000-2012 Free Software Foundation, Inc.
3 #
4 # Author: Nikos Mavrogiannopoulos
5 #
6 # This file is part of GnuTLS.
7 #
8 # The GnuTLS is free software; you can redistribute it and/or
9 # modify it under the terms of the GNU Lesser General Public License
10 # as published by the Free Software Foundation; either version 3 of
11 # the License, or (at your option) any later version.
12 #
13 # The GnuTLS is distributed in the hope that it will be
14 # useful, but WITHOUT ANY WARRANTY; without even the implied warranty
15 # of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16 # Lesser General Public License for more details.
17 #
18 # You should have received a copy of the GNU Lesser General Public License
19 # along with this program.  If not, see <http://www.gnu.org/licenses/>
20
21 ACLOCAL_AMFLAGS = -I ../m4 -I ../gl/m4
22
23 EXTRA_DIST = priority_options.gperf
24 BUILT_SOURCES = pkix_asn1_tab.c gnutls_asn1_tab.c priority_options.h
25
26 SUBDIRS = includes x509 auth ext algorithms extras accelerated
27
28 if ENABLE_MINITASN1
29 SUBDIRS += minitasn1
30 endif
31
32 localedir = $(datadir)/locale
33
34 AM_CFLAGS = $(WERROR_CFLAGS) $(WSTACK_CFLAGS) $(WARN_CFLAGS) $(NETTLE_CFLAGS)
35 AM_CPPFLAGS = \
36         -DLOCALEDIR=\"$(localedir)\"            \
37         -I$(srcdir)/../gl                       \
38         -I$(builddir)/../gl                     \
39         -I$(builddir)/includes                  \
40         -I$(builddir)/x509                      \
41         -I$(srcdir)/includes                    \
42         -I$(builddir)/includes                  \
43         -I$(srcdir)/x509                        \
44         $(LIBTASN1_CFLAGS)                      \
45         $(P11_KIT_CFLAGS)
46
47 if ENABLE_OPENPGP
48 SUBDIRS += opencdk
49 SUBDIRS += openpgp
50 AM_CPPFLAGS += -I$(srcdir)/opencdk
51 endif
52
53 if ENABLE_MINITASN1
54 AM_CPPFLAGS += -I$(srcdir)/minitasn1
55 endif
56
57 # Pkg-config script.
58 pkgconfigdir = $(libdir)/pkgconfig
59 pkgconfig_DATA = gnutls.pc
60 DISTCLEANFILES = $(pkgconfig_DATA)
61
62 lib_LTLIBRARIES = libgnutls.la
63
64 SRP_COBJECTS = gnutls_srp.c
65
66 PSK_COBJECTS = gnutls_psk.c
67
68 COBJECTS = gnutls_range.c gnutls_record.c \
69         gnutls_compress.c debug.c gnutls_cipher.c       \
70         gnutls_mbuffers.c gnutls_buffers.c gnutls_handshake.c           \
71         gnutls_num.c gnutls_errors.c gnutls_dh.c gnutls_kx.c            \
72         gnutls_priority.c gnutls_hash_int.c gnutls_cipher_int.c         \
73         gnutls_session.c gnutls_db.c x509_b64.c gnutls_extensions.c     \
74         gnutls_auth.c gnutls_v2_compat.c gnutls_datum.c                 \
75         gnutls_session_pack.c gnutls_mpi.c gnutls_pk.c gnutls_cert.c    \
76         gnutls_global.c gnutls_constate.c gnutls_anon_cred.c            \
77         pkix_asn1_tab.c gnutls_asn1_tab.c                               \
78         gnutls_mem.c gnutls_ui.c vasprintf.c vasprintf.h                \
79         gnutls_sig.c gnutls_ecc.c gnutls_alert.c gnutls_privkey_raw.c   \
80         system.c gnutls_str.c gnutls_state.c gnutls_x509.c              \
81         gnutls_rsa_export.c gnutls_helper.c gnutls_supplemental.c       \
82         random.c crypto-api.c gnutls_privkey.c gnutls_pcert.c           \
83         gnutls_pubkey.c locks.c gnutls_dtls.c system_override.c \
84         crypto-backend.c verify-tofu.c pin.c tpm.c fips.c \
85         safe-memset.c
86
87 if ENABLE_SELF_CHECKS
88 COBJECTS += crypto-selftests.c crypto-selftests-pk.c
89 endif
90
91 if ENABLE_PKCS11
92 COBJECTS += pkcs11.c pkcs11_privkey.c pkcs11_write.c pkcs11_secret.c \
93         pkcs11_int.c
94 endif
95
96 if ENABLE_NETTLE
97 SUBDIRS += nettle
98 endif
99
100 HFILES = abstract_int.h debug.h gnutls_compress.h gnutls_cipher.h       \
101         gnutls_buffers.h gnutls_errors.h gnutls_int.h gnutls_dtls.h     \
102         gnutls_handshake.h gnutls_num.h algorithms.h            \
103         gnutls_dh.h gnutls_kx.h gnutls_hash_int.h gnutls_cipher_int.h   \
104         gnutls_db.h gnutls_auth.h gnutls_extensions.h   \
105         x509_b64.h gnutls_v2_compat.h gnutls_datum.h \
106         gnutls_mpi.h gnutls_pk.h gnutls_record.h                \
107         gnutls_constate.h gnutls_global.h gnutls_sig.h gnutls_mem.h     \
108         gnutls_session_pack.h gnutls_str.h gnutls_str_array.h           \
109         gnutls_state.h gnutls_x509.h crypto-backend.h                   \
110         gnutls_srp.h auth/srp.h auth/srp_passwd.h       \
111         gnutls_helper.h gnutls_supplemental.h crypto.h random.h system.h\
112         locks.h gnutls_mbuffers.h gnutls_ecc.h pin.h fips.h \
113         priority_options.h
114
115 if ENABLE_PKCS11
116 HFILES += pkcs11_int.h
117 endif
118
119 # Separate so we can create the documentation
120
121 libgnutls_la_SOURCES = $(HFILES) $(COBJECTS) $(SRP_COBJECTS)    \
122         $(PSK_COBJECTS) \
123         gnutls.asn pkix.asn libgnutls.map
124
125 libgnutls_la_LDFLAGS = -no-undefined \
126         -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE)
127
128 libgnutls_la_LIBADD = ../gl/libgnu.la x509/libgnutls_x509.la \
129         ext/libgnutls_ext.la \
130         auth/libgnutls_auth.la algorithms/libgnutls_alg.la \
131         extras/libgnutls_extras.la
132 thirdparty_libadd = $(LTLIBZ) $(LTLIBINTL) $(LIBSOCKET) \
133         $(LTLIBICONV) $(P11_KIT_LIBS) $(LIB_SELECT) $(TSS_LIBS)
134
135 if ENABLE_NETTLE
136 libgnutls_la_LIBADD += accelerated/libaccelerated.la
137 endif
138
139 if !WINDOWS
140 thirdparty_libadd += $(LTLIBPTHREAD)
141 endif
142
143 if NEEDS_LIBRT
144 thirdparty_libadd += $(LTLIBRT)
145 endif
146
147 if ENABLE_FIPS140
148 thirdparty_libadd += $(FIPS140_LIBS)
149 endif
150
151 if ENABLE_OPENPGP
152 libgnutls_la_LIBADD += openpgp/libgnutls_openpgp.la
153 libgnutls_la_LIBADD += opencdk/libminiopencdk.la
154 endif
155
156 if HAVE_LD_VERSION_SCRIPT
157 libgnutls_la_LDFLAGS += -Wl,--version-script=$(srcdir)/libgnutls.map
158 else
159 libgnutls_la_LDFLAGS += -export-symbols-regex '^(gnutls|_gnutls).*'
160 endif
161
162 if ENABLE_MINITASN1
163 libgnutls_la_LIBADD += minitasn1/libminitasn1.la
164 else
165 thirdparty_libadd += $(LIBTASN1_LIBS)
166 endif
167
168 if ENABLE_NETTLE
169 thirdparty_libadd += $(NETTLE_LIBS) $(HOGWEED_LIBS) $(GMP_LIBS)
170 libgnutls_la_LIBADD += nettle/libcrypto.la
171 endif
172
173 if HAVE_LD_OUTPUT_DEF
174 libgnutls_la_LDFLAGS += -Wl,--output-def,libgnutls-$(DLL_VERSION).def
175 libgnutls-$(DLL_VERSION).def: libgnutls.la
176 defexecdir = $(bindir)
177 defexec_DATA = libgnutls-$(DLL_VERSION).def
178 DISTCLEANFILES += $(defexec_DATA)
179 endif
180
181 if WINDOWS
182 thirdparty_libadd += -lcrypt32
183 endif
184
185 libgnutls_la_LIBADD += $(thirdparty_libadd)
186
187 # C++ library
188
189 if ENABLE_CXX
190 libgnutlsxx_la_CPPFLAGS = -I$(top_srcdir)/includes -I$(top_builddir)/includes -I$(srcdir)/includes
191
192 AM_CXXFLAGS = \
193         -I$(srcdir)/includes    \
194         -I$(builddir)/includes  
195
196 lib_LTLIBRARIES += libgnutlsxx.la
197
198 libgnutlsxx_la_SOURCES = gnutlsxx.cpp
199
200 libgnutlsxx_la_LDFLAGS = -no-undefined \
201         -version-info $(CXX_LT_CURRENT):$(CXX_LT_REVISION):$(CXX_LT_AGE)
202
203 libgnutlsxx_la_LIBADD = libgnutls.la
204
205 endif
206
207 pkix_asn1_tab.c: $(srcdir)/pkix.asn
208         -asn1Parser $(srcdir)/pkix.asn pkix_asn1_tab.c
209
210 gnutls_asn1_tab.c: $(srcdir)/gnutls.asn
211         -asn1Parser $(srcdir)/gnutls.asn gnutls_asn1_tab.c
212
213 priority_options.h: $(srcdir)/priority_options.gperf
214         -gperf -t $^ > $@-tmp && mv $@-tmp $@
215