]> git.ipfire.org Git - thirdparty/squid.git/blob - src/http/Makefile.am
Merge from trunk
[thirdparty/squid.git] / src / http / Makefile.am
1 include $(top_srcdir)/src/Common.am
2 include $(top_srcdir)/src/TestHeaders.am
3
4 noinst_LTLIBRARIES = libsquid-http.la
5
6 libsquid_http_la_SOURCES = \
7 forward.h \
8 Http1Parser.cc \
9 Http1Parser.h \
10 MethodType.cc \
11 MethodType.h \
12 ProtocolVersion.h \
13 RegisteredHeaders.h \
14 RequestMethod.cc \
15 RequestMethod.h \
16 StatusCode.cc \
17 StatusCode.h \
18 StatusLine.cc \
19 StatusLine.h
20
21 MethodType.cc: MethodType.h $(top_srcdir)/src/mk-string-arrays.awk
22 ($(AWK) -f $(top_srcdir)/src/mk-string-arrays.awk < $(srcdir)/MethodType.h | \
23 sed -e 's%METHOD_%%' -e 's%_C%-C%' >$@) || ($(RM) -f $@ && exit 1)
24
25 CLEANFILES += MethodType.cc