diff options
author | Robert James Kaes <rjkaes@users.sourceforge.net> | 2002-05-23 04:43:06 +0000 |
---|---|---|
committer | Robert James Kaes <rjkaes@users.sourceforge.net> | 2002-05-23 04:43:06 +0000 |
commit | e633b979574c1b6e384015eb6c523be9efbd172e (patch) | |
tree | 7f8b16c08391bbaaf506e81dd6a2fd59663d6bd4 /src | |
parent | 1690c05075e2d9026403e4f86111a494bd0d391b (diff) | |
download | tinyproxy-e633b979574c1b6e384015eb6c523be9efbd172e.tar.gz tinyproxy-e633b979574c1b6e384015eb6c523be9efbd172e.zip |
Added code to create the "dnsserver" program, and also reorganized to
include the various new source files.
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.am | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 987ef6b..6a9def3 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,4 +1,4 @@ -# $Id: Makefile.am,v 1.12 2002-05-02 17:34:58 rjkaes Exp $ +# $Id: Makefile.am,v 1.13 2002-05-23 04:43:06 rjkaes Exp $ # # # @@ -18,18 +18,32 @@ YFLAGS = @YFLAGS@ LDFLAGS = @LDFLAGS@ -sbin_PROGRAMS = tinyproxy +sbin_PROGRAMS = tinyproxy dnsserver + +dnsserver_SOURCES = \ + common.h \ + daemon.c daemon.h \ + dnsserver.c \ + heap.c heap.h \ + network.c network.h \ + text.c text.h tinyproxy_SOURCES = \ acl.c acl.h \ anonymous.c anonymous.h \ buffer.c buffer.h \ + common.h \ conns.c conns.h \ + daemon.c daemon.h \ + dnsclient.c dnsclient.h \ hashmap.c hashmap.h \ + heap.c heap.h \ log.c log.h \ + network.c network.h \ reqs.c reqs.h \ sock.c sock.h \ stats.c stats.h \ + text.c text.h \ thread.c thread.h \ tinyproxy.c tinyproxy.h \ utils.c utils.h \ |