2003-08-08 00:32:12 +08:00
|
|
|
# $Id: Makefile.am,v 1.18 2003-08-07 16:32:12 rjkaes Exp $
|
2000-09-12 07:37:01 +08:00
|
|
|
#
|
|
|
|
# Copyright (C) 2000 Robert James Kaes (rjkaes@flarenet.com)
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
|
|
|
|
YFLAGS = @YFLAGS@
|
2001-10-01 12:01:10 +08:00
|
|
|
LDFLAGS = @LDFLAGS@
|
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
|
|
|
|
|
|
|
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 \
|
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 \
|
2003-03-14 05:23:01 +08:00
|
|
|
htmlerror.c htmlerror.h \
|
2003-03-13 13:28:46 +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 \
|
|
|
|
vector.c vector.h \
|
2003-08-08 00:32:12 +08:00
|
|
|
grammar.y scanner.l
|
2000-02-17 01:32:49 +08:00
|
|
|
|
2002-04-11 05:51:01 +08:00
|
|
|
EXTRA_tinyproxy_SOURCES = filter.c filter.h grammar.h
|
|
|
|
tinyproxy_DEPENDENCIES = @ADDITIONAL_OBJECTS@
|
|
|
|
tinyproxy_LDADD = @ADDITIONAL_OBJECTS@
|
2000-09-12 07:37:01 +08:00
|
|
|
|
|
|
|
scanner.c: scanner.l grammar.h
|
2003-06-27 02:23:01 +08:00
|
|
|
$(LEX) $(LEX_FLAGS) $(LFLAGS) -i $< && mv $(LEX_OUTPUT_ROOT).c $@
|
2001-11-05 23:24:01 +08:00
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -f *.da
|
2001-12-16 04:02:26 +08:00
|
|
|
rm -f gmon.out
|