2005-08-16 12:03:19 +08:00
|
|
|
# $Id: Makefile.am,v 1.23 2005-08-16 04:03:19 rjkaes Exp $
|
2000-09-12 07:37:01 +08:00
|
|
|
#
|
2005-07-13 01:39:44 +08:00
|
|
|
# Copyright (C) 2000 Robert James Kaes (rjkaes@users.sourceforge.net)
|
2000-09-12 07:37:01 +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, or (at your option) any
|
|
|
|
# later version.
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
|
2002-05-27 02:56:43 +08:00
|
|
|
sbin_PROGRAMS = tinyproxy
|
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 \
|
2002-04-08 05:33:38 +08:00
|
|
|
tinyproxy.c tinyproxy.h \
|
|
|
|
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-03-09 09:33:54 +08:00
|
|
|
reverse-proxy.c reverse-proxy.h
|
2002-04-11 05:51:01 +08:00
|
|
|
tinyproxy_DEPENDENCIES = @ADDITIONAL_OBJECTS@
|
|
|
|
tinyproxy_LDADD = @ADDITIONAL_OBJECTS@
|
2000-09-12 07:37:01 +08:00
|
|
|
|