]> git.ipfire.org Git - thirdparty/squid.git/blame - src/ssl/Makefile.am
Bug fix: The '%I' formating code in error page shows '[unknown]' in the case of SQUID...
[thirdparty/squid.git] / src / ssl / Makefile.am
CommitLineData
95d2589c
CT
1include $(top_srcdir)/src/Common.am
2include $(top_srcdir)/src/TestHeaders.am
3
4noinst_LTLIBRARIES = libsslsquid.la libsslutil.la
5
6EXTRA_PROGRAMS = \
7 ssl_crtd
8
bb2b9f7e
AJ
9EXTRA_DIST = \
10 stub_libsslsquid.cc \
11 stub_libsslutil.cc \
12 ssl_crtd.8
1b76e6c1 13
95d2589c
CT
14if USE_SSL_CRTD
15SSL_CRTD = ssl_crtd
16SSL_CRTD_SOURCE = \
17 helper.cc \
18 helper.h
19else
20SSL_CRTD =
21SSL_CRTD_SOURCE =
22endif
23
24libsslsquid_la_SOURCES = \
25 context_storage.cc \
26 context_storage.h \
27 Config.cc \
4d16918e
CT
28 Config.h \
29 ErrorDetail.cc \
30 ErrorDetail.h \
02259ff8
CT
31 ErrorDetailManager.cc \
32 ErrorDetailManager.h \
d7ce0bcd
AR
33 ServerPeeker.cc \
34 ServerPeeker.h \
4d16918e
CT
35 support.cc \
36 support.h
95d2589c
CT
37
38libsslutil_la_SOURCES = \
95d2589c
CT
39 gadgets.cc \
40 gadgets.h \
41 crtd_message.cc \
42 crtd_message.h \
43 $(SSL_CRTD_SOURCE)
44
45libexec_PROGRAMS = \
46 $(SSL_CRTD)
47
48if USE_SSL_CRTD
49ssl_crtd_SOURCES = ssl_crtd.cc certificate_db.cc certificate_db.h
31bc1fa6 50ssl_crtd_LDADD = $(SSLLIB) -lsslutil $(COMPAT_LIB)
95d2589c 51endif