forked from PADL/mech_sanon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.am
68 lines (60 loc) · 1.79 KB
/
Makefile.am
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
AUTOMAKE_OPTIONS = subdir-objects
ACLOCAL_AMFLAGS = -I m4
CLEANFILES = mech-test
gssincludedir = $(includedir)/gssapi
gssdir = $(libdir)/gss
gss_LTLIBRARIES = mech_sanon.la
mech_sanon_la_CFLAGS = -Werror -Wall -Wunused-parameter @KRB5_CFLAGS@
mech_sanon_la_CPPFLAGS = -DGSSAPI_CALLCONV=KRB5_CALLCONV -DBUILD_GSSSANON_LIB -I$(srcdir)/x25519 -I$(srcdir)
mech_sanon_la_DEPENDENCIES = $(srcdir)/mech_sanon.exports
mech_sanon_la_LDFLAGS = -avoid-version -module -export-symbols $(srcdir)/mech_sanon.exports -no-undefined @KRB5_LDFLAGS@
mech_sanon_la_LIBADD = @KRB5_LIBS@
mech_sanon_la_SOURCES = \
accept_sec_context.c \
acquire_cred.c \
add_cred.c \
canonicalize_name.c \
compare_name.c \
context_time.c \
crypto.c \
delete_sec_context.c \
derive.c \
display_name.c \
display_status.c \
duplicate_name.c \
export_cred.c \
export_name.c \
export_sec_context.c \
external.c \
import_cred.c \
import_name.c \
import_sec_context.c \
init_sec_context.c \
inquire_attrs_for_mech.c \
inquire_context.c \
inquire_cred_by_mech.c \
inquire_cred.c \
inquire_mechs_for_name.c \
inquire_names_for_mech.c \
inquire_sec_context_by_oid.c \
negoex.c \
process_context_token.c \
release_cred.c \
release_name.c \
release_oid.c \
rfc4121.c \
x25519/ed25519_ref10.c \
x25519/x25519_ref10.c
noinst_PROGRAMS = test_sanon
test_sanon_CFLAGS = -Werror -Wall -Wunused-parameter @KRB5_CFLAGS@
test_sanon_SOURCES = test_sanon.c
test_sanon_LDFLAGS = @KRB5_LDFLAGS@
test_sanon_LDADD = @KRB5_LIBS@
#
# We can only run the tests in-tree with a recent version of MIT
# that supports GSS_MECH_CONFIG (landed at the same time as NegoEx).
#
test: $(builddir)/test_sanon $(builddir)/mech-test
if NEGOEX
GSS_MECH_CONFIG=$(builddir)/mech-test $(builddir)/test_sanon
endif