forked from gssapi/gssproxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.am
87 lines (67 loc) · 1.27 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
t_acquire_SOURCES = \
t_utils.c \
t_acquire.c
t_acquire_LDADD = \
$(GSSAPI_LIBS)
t_accept_SOURCES = \
t_utils.c \
t_accept.c
t_accept_LDADD = \
$(GSSAPI_LIBS)
t_cred_store_SOURCES = \
t_utils.c \
t_cred_store.c
t_cred_store_LDADD = \
$(GSSAPI_LIBS)
t_impersonate_SOURCES = \
t_utils.c \
t_impersonate.c
t_impersonate_LDADD = \
$(GSSAPI_LIBS)
t_init_SOURCES = \
t_utils.c \
t_init.c
t_init_LDADD = \
$(GSSAPI_LIBS)
t_names_SOURCES = \
t_utils.c \
t_names.c
t_names_LDADD = \
$(GSSAPI_LIBS)
t_setcredopt_SOURCES = \
t_utils.c \
t_setcredopt.c
t_setcredopt_LDADD = \
$(GSSAPI_LIBS)
check_PROGRAMS = \
t_acquire \
t_cred_store \
t_impersonate \
t_accept \
t_init \
t_names \
t_setcredopt \
$(NULL)
if HAVE_SYSTEMD_DAEMON
userproxytest_SOURCES = \
userproxytest.c
check_PROGRAMS += userproxytest
endif
noinst_PROGRAMS = $(check_PROGRAMS)
noinst_HEADERS = \
t_utils.h
EXTRA_DIST = \
runtests.py \
t_acquire.py \
t_basic.py \
t_cred_store.py \
testlib.py \
t_impersonate.py \
t_interpose.py \
t_multi_key.py \
t_names.py \
t_program.py \
t_reloading.py \
t_setcredopt.py \
$(NULL)
all: $(check_PROGRAMS)