Added code to create the "dnsserver" program, and also reorganized to

include the various new source files.
This commit is contained in:
Robert James Kaes 2002-05-23 04:43:06 +00:00
parent 1690c05075
commit e633b97957

View File

@ -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 \