Use the new asn1_read_node_value()
[gnutls.git] / lib / x509 / Makefile.am
blobd16dfc7246e6d988814a35ace71f61867829c890
1 ## Process this file with automake to produce Makefile.in
2 # Copyright (C) 2003-2012 Free Software Foundation, Inc.
4 # This file is part of GnuTLS.
6 # The GnuTLS is free software; you can redistribute it and/or
7 # modify it under the terms of the GNU Lesser General Public License
8 # as published by the Free Software Foundation; either version 3 of
9 # the License, or (at your option) any later version.
11 # This library is distributed in the hope that it will be useful, but
12 # WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 # Lesser General Public License for more details.
16 # You should have received a copy of the GNU Lesser General Public License
17 # along with this program.  If not, see <http://www.gnu.org/licenses/>
19 AM_CFLAGS = $(WERROR_CFLAGS) $(WSTACK_CFLAGS) $(WARN_CFLAGS)
20 AM_CPPFLAGS = \
21         -I$(srcdir)/../../gl            \
22         -I$(builddir)/../../gl          \
23         -I$(srcdir)/../includes         \
24         -I$(builddir)/../includes       \
25         -I$(srcdir)/..                  \
26         $(LIBOPENCDK_CFLAGS)
28 if ENABLE_MINITASN1
29 AM_CPPFLAGS += -I$(srcdir)/../minitasn1
30 endif
32 noinst_LTLIBRARIES = libgnutls_x509.la
34 libgnutls_x509_la_SOURCES =     \
35         common.c key_encode.c   \
36         common.h key_decode.c   \
37         crl.c                   \
38         crl_write.c             \
39         crq.c                   \
40         dn.c                    \
41         extensions.c            \
42         mpi.c                   \
43         output.c                \
44         pbkdf2-sha1.c           \
45         pbkdf2-sha1.h           \
46         pkcs12.c                \
47         pkcs12_bag.c            \
48         pkcs12_encr.c           \
49         pkcs7.c                 \
50         privkey.c               \
51         privkey_pkcs8.c         \
52         rfc2818_hostname.c      \
53         sign.c                  \
54         verify.c                \
55         x509.c                  \
56         x509_int.h              \
57         x509_write.c            \
58         verify-high.c           \
59         verify-high.h
61 if ENABLE_OCSP
62 libgnutls_x509_la_SOURCES += ocsp.c ocsp_output.c
63 endif