Implement gssEapDeriveRFC3961Key
[mech_eap.orig] / Makefile.am
1 AUTOMAKE_OPTIONS = foreign
2
3 gssdir = $(libdir)/gss
4
5 gss_LTLIBRARIES = libmech_eap.la
6
7 libmech_eap_la_CFLAGS  = -DBUILD_GSSEAP_LIB -g -Wall -fno-strict-aliasing \
8                          @EAP_CFLAGS@ @KRB5_CFLAGS@ @TARGET_CFLAGS@
9 libmech_eap_la_LDFLAGS = -export-symbols mech_eap.exports -version-info 0:0:0 \
10                          @EAP_LDFLAGS@ @KRB5_LDFLAGS@ @TARGET_LDFLAGS@
11 libmech_eap_la_LIBADD  = @EAP_LIBS@ @KRB5_LIBS@
12
13 libmech_eap_la_SOURCES =                        \
14         accept_sec_context.c                    \
15         acquire_cred.c                          \
16         acquire_cred_with_password.c            \
17         add_cred.c                              \
18         add_cred_with_password.c                \
19         canonicalize_name.c                     \
20         compare_name.c                          \
21         context_time.c                          \
22         delete_sec_context.c                    \
23         display_name.c                          \
24         display_name_ext.c                      \
25         duplicate_name.c                        \
26         eap_mech.c                              \
27         export_name.c                           \
28         export_sec_context.c                    \
29         get_mic.c                               \
30         get_name_attribute.c                    \
31         import_name.c                           \
32         import_sec_context.c                    \
33         indicate_mechs.c                        \
34         init_sec_context.c                      \
35         inquire_context.c                       \
36         inquire_cred.c                          \
37         inquire_cred_by_oid.c                   \
38         inquire_mechs_for_name.c                \
39         inquire_names_for_mech.c                \
40         inquire_sec_context_by_oid.c            \
41         map_name_to_any.c                       \
42         process_context_token.c                 \
43         pseudo_random.c                         \
44         release_any_name_mapping.c              \
45         release_cred.c                          \
46         release_name.c                          \
47         release_oid.c                           \
48         set_name_attribute.c                    \
49         set_cred_option.c                       \
50         set_sec_context_option.c                \
51         store_cred.c                            \
52         unwrap.c                                \
53         unwrap_iov.c                            \
54         util_context.c                          \
55         util_cksum.c                            \
56         util_cred.c                             \
57         util_crypt.c                            \
58         util_krb.c                              \
59         util_mech.c                             \
60         util_name.c                             \
61         util_oid.c                              \
62         util_ordering.c                         \
63         util_token.c                            \
64         verify_mic.c                            \
65         wrap.c                                  \
66         wrap_iov.c                              \
67         wrap_iov_length.c                       \
68         wrap_size_limit.c
69