summaryrefslogtreecommitdiff
path: root/lib/Makefile.am
blob: fc8573001db579e5be73a1676f9f77689d2f802e (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
## Process this file with automake to produce Makefile.in
# Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation
#
# Author: Nikos Mavroyanopoulos
#
# This file is part of GNUTLS.
#
# This file is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This file 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
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this file; if not, write to the Free Software Foundation,
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.

SUBDIRS = x509
if ENABLE_MINITASN1
SUBDIRS += minitasn1
endif

AM_CPPFLAGS = -I$(top_srcdir)/crypto -I$(top_srcdir)/gl			\
	-I$(top_srcdir)/includes -I../includes				\
	-I$(srcdir)/x509						\
	-I$(top_srcdir)/libextra -I$(top_srcdir)/libextra/openpgp/	\
	-I$(top_srcdir)/libextra/opencdk 				\
	$(LIBOPENCDK_CFLAGS) $(LIBGCRYPT_CFLAGS)

if ENABLE_MINITASN1
AM_CPPFLAGS += -I$(srcdir)/minitasn1
else
AM_CPPFLAGS += $(LIBTASN1_CFLAGS)
endif

bin_SCRIPTS = libgnutls-config

m4datadir = $(datadir)/aclocal
dist_m4data_DATA = libgnutls.m4

# Pkg-config script.
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = gnutls.pc
DISTCLEANFILES = $(pkgconfig_DATA)

EXTRA_DIST = gnutls-api.texi
lib_LTLIBRARIES = libgnutls.la

SRP_COBJECTS = ext_srp.c gnutls_srp.c auth_srp.c auth_srp_passwd.c	\
	auth_srp_sb64.c auth_srp_rsa.c

COBJECTS = gnutls_record.c gnutls_compress.c debug.c gnutls_cipher.c	\
	gnutls_buffers.c gnutls_handshake.c gnutls_num.c		\
	gnutls_errors.c gnutls_algorithms.c gnutls_dh.c gnutls_kx.c	\
	gnutls_priority.c gnutls_hash_int.c gnutls_cipher_int.c		\
	gnutls_compress_int.c gnutls_session.c gnutls_db.c x509_b64.c	\
	auth_anon.c gnutls_extensions.c gnutls_auth.c gnutls_random.c	\
	gnutls_v2_compat.c gnutls_datum.c auth_rsa.c			\
	gnutls_session_pack.c gnutls_mpi.c gnutls_pk.c gnutls_cert.c	\
	gnutls_global.c gnutls_constate.c gnutls_anon_cred.c		\
	pkix_asn1_tab.c gnutls_asn1_tab.c gnutls_mem.c auth_cert.c	\
	gnutls_ui.c gnutls_sig.c auth_dhe.c gnutls_dh_primes.c		\
	ext_max_record.c gnutls_alert.c gnutls_str.c gnutls_state.c	\
	gnutls_x509.c ext_cert_type.c gnutls_rsa_export.c		\
	auth_rsa_export.c ext_server_name.c auth_dh_common.c memmem.c

HFILES = debug.h gnutls_compress.h defines.h gnutls_cipher.h		\
	gnutls_buffers.h gnutls_errors.h gnutls_int.h			\
	gnutls_handshake.h gnutls_num.h gnutls_algorithms.h		\
	gnutls_dh.h gnutls_kx.h gnutls_hash_int.h gnutls_cipher_int.h	\
	gnutls_db.h gnutls_compress_int.h gnutls_session.h		\
	gnutls_priority.h gnutls_auth.h auth_anon.h			\
	gnutls_extensions.h gnutls_buffer.h gnutls_auth_int.h		\
	gnutls_random.h x509_b64.h gnutls_v2_compat.h gnutls_datum.h	\
	auth_cert.h gnutls_mpi.h gnutls_pk.h gnutls_record.h		\
	gnutls_cert.h gnutls_constate.h gnutls_global.h strfile.h	\
	gnutls_sig.h gnutls_mem.h io_debug.h ext_max_record.h		\
	gnutls_session_pack.h gnutls_str.h gnutls_state.h		\
	gnutls_x509.h ext_cert_type.h gnutls_rsa_export.h		\
	ext_server_name.h auth_dh_common.h ext_srp.h gnutls_srp.h	\
	auth_srp.h auth_srp_passwd.h memmem.h

# Separate so we can create the documentation

libgnutls_la_SOURCES = $(HFILES) $(COBJECTS) $(SRP_COBJECTS)	\
	gnutls.asn pkix.asn

libgnutls_la_LDFLAGS = -export-symbols-regex '^(_gnutls|gnutls|_E_).*' \
	-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE)

libgnutls_la_LIBADD = ../crypto/libgc.la x509/libgnutls_x509.la	\
	$(LIBGCRYPT_LIBS)

if ENABLE_MINITASN1
libgnutls_la_LIBADD += minitasn1/libminitasn1.la
else
libgnutls_la_LDFLAGS += $(LIBTASN1_LIBS) 
endif

pkix_asn1_tab.c: pkix.asn
	-asn1Parser pkix.asn pkix_asn1_tab.c

gnutls_asn1_tab.c: gnutls.asn
	-asn1Parser gnutls.asn gnutls_asn1_tab.c

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

dist-hook: gnutls-api.texi