]> git.ipfire.org Git - thirdparty/squid.git/blobdiff - src/http/Makefile.am
Source Format Enforcement (#532)
[thirdparty/squid.git] / src / http / Makefile.am
index 7c7530bd1a55d000c06162d2ccf40da13e3242be..59354223d8345543cfb5072836bfbc7f53bae3f4 100644 (file)
@@ -1,19 +1,51 @@
+## Copyright (C) 1996-2020 The Squid Software Foundation and contributors
+##
+## Squid software is distributed under GPLv2+ license and includes
+## contributions from numerous individuals and organizations.
+## Please see the COPYING and CONTRIBUTORS files for details.
+##
+
 include $(top_srcdir)/src/Common.am
 include $(top_srcdir)/src/TestHeaders.am
 
-noinst_LTLIBRARIES = libsquid-http.la
+SUBDIRS = one url_rewriters
+DIST_SUBDIRS = one url_rewriters
+
+noinst_LTLIBRARIES = libhttp.la
 
-libsquid_http_la_SOURCES = \
+libhttp_la_SOURCES = \
+       ContentLengthInterpreter.cc \
+       ContentLengthInterpreter.h \
+       forward.h \
+       Message.cc \
+       Message.h \
        MethodType.cc \
        MethodType.h \
        ProtocolVersion.h \
+       RegisteredHeaders.h \
+       RegisteredHeaders.cc \
+       RegisteredHeadersHash.cci \
+       RequestMethod.cc \
+       RequestMethod.h \
+       StateFlags.h \
        StatusCode.cc \
        StatusCode.h \
        StatusLine.cc \
-       StatusLine.h
+       StatusLine.h \
+       Stream.cc \
+       Stream.h
+
+libhttp_la_LIBADD= one/libhttp1.la
 
 MethodType.cc: MethodType.h $(top_srcdir)/src/mk-string-arrays.awk
-       ($(AWK) -f $(top_srcdir)/src/mk-string-arrays.awk < $(srcdir)/MethodType.h | \
+       ($(AWK) -f $(top_srcdir)/src/mk-string-arrays.awk sbuf=1 < $(srcdir)/MethodType.h | \
                sed -e 's%METHOD_%%' -e 's%_C%-C%' >$@) || ($(RM) -f $@ && exit 1)
 
 CLEANFILES += MethodType.cc
+
+gperf-files: RegisteredHeadersHash.gperf
+       if test $(srcdir)/RegisteredHeadersHash.gperf -nt $(srcdir)/RegisteredHeadersHash.cci; then gperf -m 100000 $(srcdir)/RegisteredHeadersHash.gperf | sed 's/register //g' > $(srcdir)/RegisteredHeadersHash.cci; fi
+
+EXTRA_DIST = RegisteredHeadersHash.gperf
+
+.PHONY: gperf-files