]>
Commit | Line | Data |
---|---|---|
f70aedc4 | 1 | ## Copyright (C) 1996-2021 The Squid Software Foundation and contributors |
ca02e0ec AJ |
2 | ## |
3 | ## Squid software is distributed under GPLv2+ license and includes | |
4 | ## contributions from numerous individuals and organizations. | |
5 | ## Please see the COPYING and CONTRIBUTORS files for details. | |
6 | ## | |
7 | ||
e2ab6099 AJ |
8 | include $(top_srcdir)/src/Common.am |
9 | ||
16c02b14 AJ |
10 | EXTRA_DIST= \ |
11 | README \ | |
12 | required.m4 \ | |
13 | negotiate_kerberos_auth.8 | |
3e5d7cdf | 14 | |
16c02b14 AJ |
15 | libexec_PROGRAMS = \ |
16 | negotiate_kerberos_auth \ | |
17 | negotiate_kerberos_auth_test | |
3e5d7cdf | 18 | |
01a1acbc | 19 | AM_CPPFLAGS += -I$(srcdir) |
3e5d7cdf | 20 | |
aa5639dc | 21 | negotiate_kerberos_auth_SOURCES = \ |
22 | negotiate_kerberos.h \ | |
16c02b14 | 23 | negotiate_kerberos_auth.cc \ |
aa5639dc | 24 | negotiate_kerberos_pac.cc |
16c02b14 AJ |
25 | negotiate_kerberos_auth_LDFLAGS= |
26 | negotiate_kerberos_auth_LDADD= \ | |
8bdd0cec AJ |
27 | $(top_builddir)/lib/libmiscencoding.la \ |
28 | $(COMPAT_LIB) \ | |
09cd7204 | 29 | $(NETTLELIB) \ |
8bdd0cec AJ |
30 | $(KRB5LIBS) \ |
31 | $(XTRA_LIBS) | |
32 | ||
aa5639dc | 33 | negotiate_kerberos_auth_test_SOURCES = \ |
16c02b14 AJ |
34 | negotiate_kerberos_auth_test.cc |
35 | negotiate_kerberos_auth_test_LDFLAGS= | |
36 | negotiate_kerberos_auth_test_LDADD= \ | |
8bdd0cec AJ |
37 | $(top_builddir)/lib/libmiscencoding.la \ |
38 | $(COMPAT_LIB) \ | |
09cd7204 | 39 | $(NETTLELIB) \ |
8bdd0cec AJ |
40 | $(KRB5LIBS) \ |
41 | $(XTRA_LIBS) | |
aca1cada | 42 | |
16c02b14 | 43 | man_MANS= negotiate_kerberos_auth.8 |