]> git.ipfire.org Git - thirdparty/squid.git/blob - src/ssl/Makefile.am
SSL server certificate validator implementation
[thirdparty/squid.git] / src / ssl / Makefile.am
1 include $(top_srcdir)/src/Common.am
2 include $(top_srcdir)/src/TestHeaders.am
3
4 noinst_LTLIBRARIES = libsslsquid.la libsslutil.la
5
6 EXTRA_PROGRAMS = \
7 ssl_crtd
8
9 EXTRA_DIST = \
10 ssl_crtd.8
11
12 if USE_SSL_CRTD
13 SSL_CRTD = ssl_crtd
14 else
15 SSL_CRTD =
16 endif
17
18 ## SSL stuff used by main Squid but not by ssl_crtd
19 libsslsquid_la_SOURCES = \
20 cert_validate_message.cc \
21 cert_validate_message.h \
22 context_storage.cc \
23 context_storage.h \
24 Config.cc \
25 Config.h \
26 ErrorDetail.cc \
27 ErrorDetail.h \
28 ErrorDetailManager.cc \
29 ErrorDetailManager.h \
30 ProxyCerts.h \
31 ServerBump.cc \
32 ServerBump.h \
33 support.cc \
34 support.h \
35 helper.cc \
36 helper.h
37
38 ## SSL stuff used by main Squid and ssl_crtd
39 libsslutil_la_SOURCES = \
40 gadgets.cc \
41 gadgets.h \
42 crtd_message.cc \
43 crtd_message.h
44
45 libexec_PROGRAMS = \
46 $(SSL_CRTD)
47
48 if USE_SSL_CRTD
49 ssl_crtd_SOURCES = ssl_crtd.cc certificate_db.cc certificate_db.h
50 ssl_crtd_LDADD = libsslutil.la $(SSLLIB) $(COMPAT_LIB)
51 endif