]> git.ipfire.org Git - thirdparty/squid.git/blob - src/http/Makefile.am
Polish: class file shuffling for guidelines
[thirdparty/squid.git] / src / http / Makefile.am
1 include $(top_srcdir)/src/Common.am
2 include $(top_srcdir)/src/TestHeaders.am
3
4 AUTOMAKE_OPTIONS = subdir-objects
5
6 SUBDIRS = one
7 DIST_SUBDIRS = one
8
9 noinst_LTLIBRARIES = libsquid-http.la
10
11 libsquid_http_la_SOURCES = \
12 forward.h \
13 MethodType.cc \
14 MethodType.h \
15 ProtocolVersion.h \
16 RegisteredHeaders.h \
17 RequestMethod.cc \
18 RequestMethod.h \
19 StatusCode.cc \
20 StatusCode.h \
21 StatusLine.cc \
22 StatusLine.h
23
24 libsquid_http_la_LIBADD= one/libhttp1.la
25
26 MethodType.cc: MethodType.h $(top_srcdir)/src/mk-string-arrays.awk
27 ($(AWK) -f $(top_srcdir)/src/mk-string-arrays.awk sbuf=1 < $(srcdir)/MethodType.h | \
28 sed -e 's%METHOD_%%' -e 's%_C%-C%' >$@) || ($(RM) -f $@ && exit 1)
29
30 CLEANFILES += MethodType.cc