diff options
author | Robert James Kaes <rjkaes@users.sourceforge.net> | 2002-04-07 21:33:38 +0000 |
---|---|---|
committer | Robert James Kaes <rjkaes@users.sourceforge.net> | 2002-04-07 21:33:38 +0000 |
commit | 5e9aa9000946571a134e05c6afc5396c46648ba6 (patch) | |
tree | 13c4169ea342113e75e8caedf4f3154123e1eea6 | |
parent | 97a72783f501ac99c275b859d343237f563e5290 (diff) | |
download | tinyproxy-5e9aa9000946571a134e05c6afc5396c46648ba6.tar.gz tinyproxy-5e9aa9000946571a134e05c6afc5396c46648ba6.zip |
Update the list of source code files to include the vector and hashmap
files.
-rw-r--r-- | src/Makefile.am | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 1ed6d01..1efc906 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,4 +1,4 @@ -# $Id: Makefile.am,v 1.9 2001-12-15 20:02:26 rjkaes Exp $ +# $Id: Makefile.am,v 1.10 2002-04-07 21:33:38 rjkaes Exp $ # # # @@ -21,18 +21,20 @@ LDFLAGS = @LDFLAGS@ bin_PROGRAMS = tinyproxy tinyproxy_SOURCES = \ - conns.c conns.h \ + acl.c acl.h \ + anonymous.c anonymous.h \ buffer.c buffer.h \ + conns.c conns.h \ + hashmap.c hashmap.h \ log.c log.h \ reqs.c reqs.h \ sock.c sock.h \ - tinyproxy.c tinyproxy.h \ - utils.c utils.h \ - anonymous.c anonymous.h \ stats.c stats.h \ thread.c thread.h \ + tinyproxy.c tinyproxy.h \ + utils.c utils.h \ + vector.c vector.h \ grammar.y scanner.l \ - acl.c acl.h \ regexp.h tinyproxy_LDADD = @LIBOBJS@ |