1## Copyright (C) 1996-2021 The Squid Software Foundation and contributors
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
8include $(top_srcdir)/src/Common.am
9include $(top_srcdir)/src/TestHeaders.am
10include $(top_srcdir)/doc/manuals/Substitute.am
11
12security_file_certgen.8: $(srcdir)/security_file_certgen.8.in Makefile
13	$(SUBSTITUTE) < $(srcdir)/security_file_certgen.8.in > $@
14
15man_MANS = security_file_certgen.8
16CLEANFILES += security_file_certgen.8
17EXTRA_DIST = security_file_certgen.8.in
18
19libexec_PROGRAMS = security_file_certgen
20
21security_file_certgen_SOURCES = \
22	certificate_db.cc \
23	certificate_db.h \
24	security_file_certgen.cc
25
26security_file_certgen_LDADD = \
27	$(top_builddir)/src/ssl/libsslutil.la \
28	$(SSLLIB) \
29	$(COMPAT_LIB)
30
31