]> git.ipfire.org Git - thirdparty/squid.git/blame - src/error/Makefile.am
Source Format Enforcement (#763)
[thirdparty/squid.git] / src / error / Makefile.am
CommitLineData
f70aedc4 1## Copyright (C) 1996-2021 The Squid Software Foundation and contributors
83b053a0
CT
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
10
11categories.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
14BUILT_SOURCES = \
15 categories.cc
16
17noinst_LTLIBRARIES = liberror.la
18
19liberror_la_SOURCES = \
83b053a0
CT
20 Detail.cc \
21 Detail.h \
f70aedc4 22 Error.cc \
23 Error.h \
24 ExceptionErrorDetail.h \
83b053a0 25 SysErrorDetail.h \
f70aedc4 26 forward.h
83b053a0
CT
27
28nodist_liberror_la_SOURCES = \
29 $(BUILT_SOURCES)
30
31CLEANFILES += \
32 $(BUILT_SOURCES)
33