2001-12-15 13:57:40 +08:00
|
|
|
# $Id: Makefile.am,v 1.8 2001-12-15 05:57:40 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
|
|
|
|
2000-02-17 01:32:49 +08:00
|
|
|
bin_PROGRAMS = tinyproxy
|
2000-09-12 07:37:01 +08:00
|
|
|
|
|
|
|
tinyproxy_SOURCES = \
|
2001-10-26 00:58:50 +08:00
|
|
|
conns.c conns.h \
|
2000-02-17 01:32:49 +08:00
|
|
|
buffer.c buffer.h \
|
|
|
|
log.c log.h \
|
|
|
|
reqs.c reqs.h \
|
|
|
|
sock.c sock.h \
|
|
|
|
tinyproxy.c tinyproxy.h \
|
|
|
|
utils.c utils.h \
|
2000-04-01 04:14:45 +08:00
|
|
|
anonymous.c anonymous.h \
|
2000-09-12 07:37:01 +08:00
|
|
|
stats.c stats.h \
|
|
|
|
thread.c thread.h \
|
|
|
|
grammar.y scanner.l \
|
|
|
|
acl.c acl.h \
|
|
|
|
ternary.c ternary.h \
|
2000-02-17 01:32:49 +08:00
|
|
|
regexp.h
|
|
|
|
|
|
|
|
tinyproxy_LDADD = @LIBOBJS@
|
|
|
|
|
|
|
|
EXTRA_DIST = gnuregex.c gnuregex.h \
|
|
|
|
filter.c filter.h
|
|
|
|
|
2000-09-12 07:37:01 +08:00
|
|
|
EXTRA_tinyproxy_SOURCES = grammar.h
|
|
|
|
|
|
|
|
scanner.c: scanner.l grammar.h
|
|
|
|
$(LEX) $(AM_LFLAGS) $(LFLAGS) -i $< && mv $(LEX_OUTPUT_ROOT).c $@
|
2001-11-05 23:24:01 +08:00
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -f *.da
|
|
|
|
rm -f gmon.out
|