]> git.ipfire.org Git - thirdparty/squid.git/blame - src/ssl/Makefile.am
Add some stubs and undo some problematic make optimizations
[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
9if USE_SSL_CRTD
10SSL_CRTD = ssl_crtd
11SSL_CRTD_SOURCE = \
12 helper.cc \
13 helper.h
14else
15SSL_CRTD =
16SSL_CRTD_SOURCE =
17endif
18
19libsslsquid_la_SOURCES = \
20 context_storage.cc \
21 context_storage.h \
22 Config.cc \
4d16918e
CT
23 Config.h \
24 ErrorDetail.cc \
25 ErrorDetail.h \
26 support.cc \
27 support.h
95d2589c
CT
28
29libsslutil_la_SOURCES = \
95d2589c
CT
30 gadgets.cc \
31 gadgets.h \
32 crtd_message.cc \
33 crtd_message.h \
34 $(SSL_CRTD_SOURCE)
35
36libexec_PROGRAMS = \
37 $(SSL_CRTD)
38
39if USE_SSL_CRTD
40ssl_crtd_SOURCES = ssl_crtd.cc certificate_db.cc certificate_db.h
31bc1fa6 41ssl_crtd_LDADD = $(SSLLIB) -lsslutil $(COMPAT_LIB)
95d2589c 42endif