]> git.ipfire.org Git - thirdparty/squid.git/blob - src/error/Makefile.am
Detail client closures of CONNECT tunnels during TLS handshake (#691)
[thirdparty/squid.git] / src / error / Makefile.am
1 ## Copyright (C) 1996-2020 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
8 include $(top_srcdir)/src/Common.am
9 include $(top_srcdir)/src/TestHeaders.am
10
11 categories.cc: forward.h $(top_srcdir)/src/mk-string-arrays.awk
12 $(AWK) -f $(top_srcdir)/src/mk-string-arrays.awk ifile=error/forward.h < $(srcdir)/forward.h > $@ || ($(RM) -f $@ && exit 1)
13
14 BUILT_SOURCES = \
15 categories.cc
16
17 noinst_LTLIBRARIES = liberror.la
18
19 liberror_la_SOURCES = \
20 forward.h \
21 Error.cc \
22 Error.h \
23 Detail.cc \
24 Detail.h \
25 SysErrorDetail.h \
26 ExceptionErrorDetail.h
27
28 nodist_liberror_la_SOURCES = \
29 $(BUILT_SOURCES)
30
31 CLEANFILES += \
32 $(BUILT_SOURCES)
33