forked from rra/pam-krb5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.am
203 lines (188 loc) · 9.7 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
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
# Automake makefile for pam-krb5.
#
# Written by Russ Allbery <[email protected]>
# Copyright 2005-2007, 2014, 2017, 2020 Russ Allbery <[email protected]>
# Copyright 2009, 2011-2012
# The Board of Trustees of the Leland Stanford Junior University
# Copyright 2005 Andres Salomon <[email protected]>
# Copyright 1999-2000 Frank Cusack <[email protected]>
#
# SPDX-License-Identifier: BSD-3-clause or GPL-1+
ACLOCAL_AMFLAGS = -I m4
EXTRA_DIST = .clang-format .gitignore .github LICENSE README.md bootstrap \
ci/README.md ci/files/heimdal/heimdal-kdc \
ci/files/heimdal/kadmind.acl ci/files/heimdal/kdc.conf \
ci/files/heimdal/krb5.conf ci/files/heimdal/pki-mapping \
ci/files/mit/extensions.client ci/files/mit/extensions.kdc \
ci/files/mit/kadm5.acl ci/files/mit/kdc.conf ci/files/mit/krb5.conf \
ci/kdc-setup-heimdal ci/kdc-setup-mit ci/install ci/test \
docs/metadata docs/pam_krb5.pod module/pam_krb5.map \
module/pam_krb5.sym tests/README tests/TESTS tests/config/README \
tests/data/cppcheck.supp tests/data/generate-krb5-conf \
tests/data/krb5-pam.conf tests/data/krb5.conf tests/data/perl.conf \
tests/data/scripts tests/data/valgrind.supp \
tests/docs/pod-spelling-t tests/docs/pod-t \
tests/docs/spdx-license-t tests/fakepam/README tests/tap/libtap.sh \
tests/tap/perl/Test/RRA.pm tests/tap/perl/Test/RRA/Automake.pm \
tests/tap/perl/Test/RRA/Config.pm tests/style/obsolete-strings-t \
tests/valgrind/logs-t
# Everything we build needs the Kerbeors headers and library flags.
AM_CPPFLAGS = $(KRB5_CPPFLAGS)
AM_LDFLAGS = $(KRB5_LDFLAGS)
noinst_LTLIBRARIES = pam-util/libpamutil.la portable/libportable.la
portable_libportable_la_SOURCES = portable/dummy.c portable/kadmin.h \
portable/krb5.h portable/macros.h portable/pam.h portable/stdbool.h \
portable/system.h
portable_libportable_la_LIBADD = $(LTLIBOBJS)
pam_util_libpamutil_la_SOURCES = pam-util/args.c pam-util/args.h \
pam-util/logging.c pam-util/logging.h pam-util/options.c \
pam-util/options.h pam-util/vector.c pam-util/vector.h
if HAVE_LD_VERSION_SCRIPT
VERSION_LDFLAGS = -Wl,--version-script=${srcdir}/module/pam_krb5.map
else
VERSION_LDFLAGS = -export-symbols ${srcdir}/module/pam_krb5.sym
endif
pamdir = $(libdir)/security
pam_LTLIBRARIES = module/pam_krb5.la
module_pam_krb5_la_SOURCES = module/account.c module/alt-auth.c \
module/auth.c module/cache.c module/context.c module/fast.c \
module/internal.h module/options.c module/password.c \
module/prompting.c module/public.c module/setcred.c \
module/support.c
module_pam_krb5_la_LDFLAGS = -module -shared \
-avoid-version $(VERSION_LDFLAGS) $(AM_LDFLAGS)
module_pam_krb5_la_LIBADD = pam-util/libpamutil.la portable/libportable.la \
$(KRB5_LIBS)
dist_man_MANS = docs/pam_krb5.5
MAINTAINERCLEANFILES = Makefile.in aclocal.m4 build-aux/compile \
build-aux/config.guess build-aux/config.sub build-aux/depcomp \
build-aux/install-sh build-aux/ltmain.sh build-aux/missing \
config.h.in config.h.in~ configure docs/pam_krb5.5 m4/libtool.m4 \
m4/ltoptions.m4 m4/ltsugar.m4 m4/ltversion.m4 m4/lt~obsolete.m4
# Separate target for a human to request building everything with as many
# compiler warnings enabled as possible.
warnings:
$(MAKE) V=0 CFLAGS='$(WARNINGS_CFLAGS) $(AM_CFLAGS)' \
KRB5_CPPFLAGS='$(KRB5_CPPFLAGS_GCC)'
$(MAKE) V=0 CFLAGS='$(WARNINGS_CFLAGS) $(AM_CFLAGS)' \
KRB5_CPPFLAGS='$(KRB5_CPPFLAGS_GCC)' $(check_PROGRAMS)
# The bits below are for the test suite, not for the main package.
check_PROGRAMS = tests/runtests tests/module/alt-auth-t \
tests/module/bad-authtok-t tests/module/basic-t \
tests/module/cache-cleanup-t tests/module/cache-t \
tests/module/expired-t tests/module/fast-anon-t tests/module/fast-t \
tests/module/long-t tests/module/no-cache-t tests/module/pam-user-t \
tests/module/password-t tests/module/pkinit-t tests/module/realm-t \
tests/module/stacked-t tests/module/trace-t tests/pam-util/args-t \
tests/pam-util/fakepam-t tests/pam-util/logging-t \
tests/pam-util/options-t tests/pam-util/vector-t \
tests/portable/asprintf-t tests/portable/mkstemp-t \
tests/portable/snprintf-t tests/portable/strndup-t
tests_runtests_CPPFLAGS = -DC_TAP_SOURCE='"$(abs_top_srcdir)/tests"' \
-DC_TAP_BUILD='"$(abs_top_builddir)/tests"'
check_LIBRARIES = tests/fakepam/libfakepam.a tests/tap/libtap.a
tests_fakepam_libfakepam_a_SOURCES = tests/fakepam/config.c \
tests/fakepam/data.c tests/fakepam/general.c \
tests/fakepam/internal.h tests/fakepam/kuserok.c \
tests/fakepam/logging.c tests/fakepam/pam.h tests/fakepam/script.c \
tests/fakepam/script.h
tests_tap_libtap_a_CPPFLAGS = $(KADM5CLNT_CPPFLAGS) $(AM_CPPFLAGS)
tests_tap_libtap_a_SOURCES = tests/tap/basic.c tests/tap/basic.h \
tests/tap/kadmin.c tests/tap/kadmin.h tests/tap/kerberos.c \
tests/tap/kerberos.h tests/tap/macros.h tests/tap/process.c \
tests/tap/process.h tests/tap/string.c tests/tap/string.h
# The list of objects and libraries used for module testing by programs that
# link with the fake PAM library or with both it and the module.
MODULE_OBJECTS = module/account.lo module/alt-auth.lo module/auth.lo \
module/cache.lo module/context.lo module/fast.lo module/options.lo \
module/password.lo module/prompting.lo module/public.lo \
module/setcred.lo module/support.lo pam-util/libpamutil.la \
tests/fakepam/libfakepam.a
# The test programs themselves.
tests_module_alt_auth_t_LDADD = $(MODULE_OBJECTS) tests/tap/libtap.a \
portable/libportable.la $(KRB5_LIBS)
tests_module_bad_authtok_t_LDADD = $(MODULE_OBJECTS) tests/tap/libtap.a \
portable/libportable.la $(KRB5_LIBS)
tests_module_basic_t_LDADD = $(MODULE_OBJECTS) tests/tap/libtap.a \
portable/libportable.la $(KRB5_LIBS)
tests_module_cache_cleanup_t_LDADD = $(MODULE_OBJECTS) tests/tap/libtap.a \
portable/libportable.la $(KRB5_LIBS)
tests_module_cache_t_LDADD = $(MODULE_OBJECTS) tests/tap/libtap.a \
portable/libportable.la $(KRB5_LIBS)
tests_module_expired_t_LDADD = $(MODULE_OBJECTS) tests/tap/libtap.a \
portable/libportable.la $(KADM5CLNT_LDFLAGS) $(KADM5CLNT_LIBS) \
$(KRB5_LIBS)
tests_module_fast_anon_t_LDADD = $(MODULE_OBJECTS) tests/tap/libtap.a \
portable/libportable.la $(KRB5_LIBS)
tests_module_fast_t_LDADD = $(MODULE_OBJECTS) tests/tap/libtap.a \
portable/libportable.la $(KRB5_LIBS)
tests_module_long_t_LDADD = $(MODULE_OBJECTS) tests/tap/libtap.a \
portable/libportable.la $(KRB5_LIBS)
tests_module_no_cache_t_LDADD = $(MODULE_OBJECTS) tests/tap/libtap.a \
portable/libportable.la $(KRB5_LIBS)
tests_module_pam_user_t_LDADD = $(MODULE_OBJECTS) tests/tap/libtap.a \
portable/libportable.la $(KRB5_LIBS)
tests_module_password_t_LDADD = $(MODULE_OBJECTS) tests/tap/libtap.a \
portable/libportable.la $(KRB5_LIBS)
tests_module_pkinit_t_LDADD = $(MODULE_OBJECTS) tests/tap/libtap.a \
portable/libportable.la $(KRB5_LIBS)
tests_module_realm_t_LDADD = $(MODULE_OBJECTS) tests/tap/libtap.a \
portable/libportable.la $(KRB5_LIBS)
tests_module_stacked_t_LDADD = $(MODULE_OBJECTS) tests/tap/libtap.a \
portable/libportable.la $(KRB5_LIBS)
tests_module_trace_t_LDADD = $(MODULE_OBJECTS) tests/tap/libtap.a \
portable/libportable.la $(KRB5_LIBS)
tests_pam_util_args_t_LDADD = pam-util/libpamutil.la \
tests/fakepam/libfakepam.a tests/tap/libtap.a \
portable/libportable.la $(KRB5_LIBS)
tests_pam_util_fakepam_t_LDADD = tests/fakepam/libfakepam.a \
tests/tap/libtap.a portable/libportable.la
tests_pam_util_logging_t_LDADD = pam-util/libpamutil.la \
tests/fakepam/libfakepam.a tests/tap/libtap.a \
portable/libportable.la $(KRB5_LIBS)
tests_pam_util_options_t_LDADD = pam-util/libpamutil.la \
tests/fakepam/libfakepam.a tests/tap/libtap.a \
portable/libportable.la $(KRB5_LIBS)
tests_pam_util_vector_t_LDADD = pam-util/libpamutil.la \
tests/fakepam/libfakepam.a tests/tap/libtap.a \
portable/libportable.la
tests_portable_asprintf_t_SOURCES = tests/portable/asprintf-t.c \
tests/portable/asprintf.c
tests_portable_asprintf_t_LDADD = tests/tap/libtap.a portable/libportable.la
tests_portable_mkstemp_t_SOURCES = tests/portable/mkstemp-t.c \
tests/portable/mkstemp.c
tests_portable_mkstemp_t_LDADD = tests/tap/libtap.a portable/libportable.la
tests_portable_snprintf_t_SOURCES = tests/portable/snprintf-t.c \
tests/portable/snprintf.c
tests_portable_snprintf_t_LDADD = tests/tap/libtap.a portable/libportable.la
tests_portable_strndup_t_SOURCES = tests/portable/strndup-t.c \
tests/portable/strndup.c
tests_portable_strndup_t_LDADD = tests/tap/libtap.a portable/libportable.la
check-local: $(check_PROGRAMS)
cd tests && ./runtests -l '$(abs_top_srcdir)/tests/TESTS'
# Used by maintainers to check the source code with cppcheck.
check-cppcheck:
cd $(abs_top_srcdir) && \
find . -name .git -prune -o -name '*.[ch]' -print \
| cppcheck -q --force --error-exitcode=2 --file-list=- \
--suppressions-list=tests/data/cppcheck.supp \
--enable=warning,performance,portability,style
# The full path to valgrind and its options, used when doing valgrind
# testing.
VALGRIND_COMMAND = $(PATH_VALGRIND) --leak-check=full \
--trace-children=yes \
--trace-children-skip=/bin/sh,*/generate-krb5-conf \
--suppressions=$(abs_top_srcdir)/tests/data/valgrind.supp \
--log-file=$(abs_top_builddir)/tests/tmp/valgrind/log.%p
# Used by maintainers to run the main test suite under valgrind.
check-valgrind: $(check_PROGRAMS)
rm -rf $(abs_top_builddir)/tests/tmp
mkdir $(abs_top_builddir)/tests/tmp
mkdir $(abs_top_builddir)/tests/tmp/valgrind
C_TAP_VALGRIND="$(VALGRIND_COMMAND)" tests/runtests \
-l '$(abs_top_srcdir)/tests/TESTS'
# Used by maintainers to reformat all source code using clang-format and
# excluding some files.
reformat:
find . -name '*.[ch]' \! -name snprintf.c \! -name krb5-profile.c \
-print | xargs clang-format-10 -style=file -i