More work on initial implementation
[mech_eap.git] / 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 @EAP_CFLAGS@ @KRB5_CFLAGS@ @TARGET_CFLAGS@
8 libmech_eap_la_LDFLAGS = -export-symbols mech_eap.exports -version-info 0:0:0 @EAP_LDFLAGS@ @KRB5_LDFLAGS@ @TARGET_LDFLAGS@
9 libmech_eap_la_LIBADD  = @EAP_LIBS@ @KRB5_LIBS@
10
11 libmech_eap_la_SOURCES =                        \
12         accept_sec_context.c                    \
13         acquire_cred.c                          \
14         acquire_cred_with_password.c            \
15         add_cred.c                              \
16         add_cred_with_password.c                \
17         canonicalize_name.c                     \
18         compare_name.c                          \
19         context_time.c                          \
20         delete_sec_context.c                    \
21         display_name.c                          \
22         display_name_ext.c                      \
23         duplicate_name.c                        \
24         eap_mech.c                              \
25         export_name.c                           \
26         export_sec_context.c                    \
27         get_mic.c                               \
28         get_name_attribute.c                    \
29         import_name.c                           \
30         import_sec_context.c                    \
31         indicate_mechs.c                        \
32         init_sec_context.c                      \
33         inquire_context.c                       \
34         inquire_cred.c                          \
35         inquire_cred_by_oid.c                   \
36         inquire_mechs_for_name.c                \
37         inquire_names_for_mech.c                \
38         inquire_sec_context_by_oid.c            \
39         map_name_to_any.c                       \
40         process_context_token.c                 \
41         pseudo_random.c                         \
42         release_any_name_mapping.c              \
43         release_cred.c                          \
44         release_name.c                          \
45         set_name_attribute.c                    \
46         set_cred_option.c                       \
47         set_sec_context_option.c                \
48         store_cred.c                            \
49         unwrap.c                                \
50         unwrap_iov.c                            \
51         util_context.c                          \
52         util_cksum.c                            \
53         util_cred.c                             \
54         util_crypt.c                            \
55         util_name.c                             \
56         verify_mic.c                            \
57         wrap.c                                  \
58         wrap_iov.c                              \
59         wrap_iov_length.c                       \
60         wrap_size_limit.c
61