2008-05-24 18:54:12 +08:00
|
|
|
# tinyproxy - A fast light-weight HTTP proxy
|
|
|
|
# Copyright (C) 2000 Robert James Kaes <rjkaes@users.sourceforge.net>
|
2000-09-12 07:37:01 +08:00
|
|
|
#
|
2008-05-24 18:54:12 +08:00
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
2000-09-12 07:37:01 +08:00
|
|
|
#
|
2008-05-24 18:54:12 +08:00
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
2000-09-12 07:37:01 +08:00
|
|
|
#
|
2008-05-24 18:54:12 +08:00
|
|
|
# You should have received a copy of the GNU General Public License along
|
|
|
|
# with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2000-09-12 07:37:01 +08:00
|
|
|
|
2002-05-27 02:56:43 +08:00
|
|
|
sbin_PROGRAMS = tinyproxy
|
2000-09-12 07:37:01 +08:00
|
|
|
|
2009-09-20 15:03:47 +08:00
|
|
|
AM_CPPFLAGS = \
|
2010-01-13 07:16:02 +08:00
|
|
|
-DSYSCONFDIR=\"${sysconfdir}\" \
|
|
|
|
-DLOCALSTATEDIR=\"${localstatedir}\"
|
2009-09-20 15:03:47 +08:00
|
|
|
|
2000-09-12 07:37:01 +08:00
|
|
|
tinyproxy_SOURCES = \
|
2002-04-08 05:33:38 +08:00
|
|
|
acl.c acl.h \
|
|
|
|
anonymous.c anonymous.h \
|
2010-01-18 21:35:31 +08:00
|
|
|
authors.c authors.h \
|
2000-02-17 01:32:49 +08:00
|
|
|
buffer.c buffer.h \
|
2002-05-27 02:56:43 +08:00
|
|
|
child.c child.h \
|
2002-05-23 12:43:06 +08:00
|
|
|
common.h \
|
2009-09-21 12:11:59 +08:00
|
|
|
conf.c conf.h \
|
2002-04-08 05:33:38 +08:00
|
|
|
conns.c conns.h \
|
2002-05-23 12:43:06 +08:00
|
|
|
daemon.c daemon.h \
|
2002-04-08 05:33:38 +08:00
|
|
|
hashmap.c hashmap.h \
|
2002-05-23 12:43:06 +08:00
|
|
|
heap.c heap.h \
|
2008-05-24 16:17:14 +08:00
|
|
|
html-error.c html-error.h \
|
2008-03-09 09:35:50 +08:00
|
|
|
http-message.c http-message.h \
|
2000-02-17 01:32:49 +08:00
|
|
|
log.c log.h \
|
2002-05-23 12:43:06 +08:00
|
|
|
network.c network.h \
|
2000-02-17 01:32:49 +08:00
|
|
|
reqs.c reqs.h \
|
|
|
|
sock.c sock.h \
|
2000-09-12 07:37:01 +08:00
|
|
|
stats.c stats.h \
|
2002-05-23 12:43:06 +08:00
|
|
|
text.c text.h \
|
2009-08-07 06:12:53 +08:00
|
|
|
main.c main.h \
|
2002-04-08 05:33:38 +08:00
|
|
|
utils.c utils.h \
|
2009-12-06 19:40:31 +08:00
|
|
|
vector.c vector.h \
|
2009-12-07 06:50:15 +08:00
|
|
|
upstream.c upstream.h \
|
|
|
|
connect-ports.c connect-ports.h
|
2000-02-17 01:32:49 +08:00
|
|
|
|
2005-08-16 12:03:19 +08:00
|
|
|
EXTRA_tinyproxy_SOURCES = filter.c filter.h \
|
2008-06-09 06:50:23 +08:00
|
|
|
reverse-proxy.c reverse-proxy.h \
|
|
|
|
transparent-proxy.c transparent-proxy.h
|
2002-04-11 05:51:01 +08:00
|
|
|
tinyproxy_DEPENDENCIES = @ADDITIONAL_OBJECTS@
|
|
|
|
tinyproxy_LDADD = @ADDITIONAL_OBJECTS@
|
2010-01-18 21:35:31 +08:00
|
|
|
|
|
|
|
EXTRA_DIST = \
|
|
|
|
authors.xsl
|
|
|
|
|
|
|
|
authors.c: $(top_srcdir)/authors.xml $(srcdir)/authors.xsl
|
|
|
|
if HAVE_XSLTPROC
|
|
|
|
$(AM_V_GEN) $(XSLTPROC) $(srcdir)/authors.xsl $< > $(@) || rm -f $(@)
|
|
|
|
else
|
|
|
|
@echo "*** xsltproc is required to regenerate $(@) ***"; exit 1;
|
|
|
|
endif
|
|
|
|
|
|
|
|
BUILT_SOURCES = \
|
|
|
|
authors.c
|