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 = \
|
|
|
|
-DSYSCONFDIR=\"${sysconfdir}\"
|
|
|
|
|
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 \
|
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 \
|
2004-08-14 04:19:50 +08:00
|
|
|
conffile.c conffile.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 \
|
2004-08-14 05:04:24 +08:00
|
|
|
vector.c vector.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@
|