summaryrefslogtreecommitdiff
path: root/lib/x509/Makefile.am
blob: de9d124529b15de703ff8c1e2e3ba84467a1fa5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
## Process this file with automake to produce Makefile.in
# Copyright (C) 2003, 2004, 2005 Free Software Foundation
#
# This file is part of GNUTLS.
#
# The GNUTLS library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public License
# as published by the Free Software Foundation; either version 2.1 of
# the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
# USA

INCLUDES = -I$(top_srcdir)/crypto -I$(top_srcdir)/gl -I$(top_srcdir)/libextra -I$(top_srcdir)/lib/minitasn1 -I$(top_srcdir)/libextra/openpgp/ -I$(top_srcdir)/libextra/opencdk -I$(top_srcdir)/lib -I$(top_srcdir)/includes $(LIBOPENCDK_CFLAGS) $(LIBTASN1_CFLAGS) $(LIBGCRYPT_CFLAGS)

noinst_LTLIBRARIES = libgnutls_x509.la

libgnutls_x509_la_SOURCES = crl.c dn.c common.c x509.c extensions.c	\
	dsa.c rfc2818_hostname.c verify.c mpi.c privkey.c pkcs7.c	\
	crq.c xml.c sign.c privkey_pkcs8.c pkcs12.c pkcs12_bag.c	\
	pkcs12_encr.c x509_write.c crl_write.c compat.c dn.h common.h	\
	x509.h extensions.h pkcs7.h compat.h verify.h mpi.h crq.h	\
	sign.h privkey.h pkcs12.h rfc2818.h dsa.h

EXTRA_DIST = x509-api.texi

x509-api.texi: $(libgnutls_x509_la_SOURCES)
	@echo "" > x509-api.texi
	@for i in $(libgnutls_x509_la_SOURCES); do \
		echo -n "Creating documentation for file $$i... " && \
		../../doc/scripts/gdoc -texinfo $$i >> x509-api.texi && \
		echo "ok"; \
	done

dist-hook: x509-api.texi