diff options
author | bde <bde@FreeBSD.org> | 1998-06-04 07:25:52 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1998-06-04 07:25:52 +0000 |
commit | 37827b0a0022c6e643c514034bf6b9c9736a0bd9 (patch) | |
tree | 977d07d9c013aa5639fc7868f3ddf2cdfe1fd6f4 /usr.sbin/named | |
parent | 05b4720d3738e2058ee528d2318ab553954d87ca (diff) | |
download | FreeBSD-src-37827b0a0022c6e643c514034bf6b9c9736a0bd9.zip FreeBSD-src-37827b0a0022c6e643c514034bf6b9c9736a0bd9.tar.gz |
Simplified using new yacc rules. This will fix bugs when we stop picking
up a possibly stale version of ns_parser.h from contrib/bind.
Diffstat (limited to 'usr.sbin/named')
-rw-r--r-- | usr.sbin/named/Makefile | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/usr.sbin/named/Makefile b/usr.sbin/named/Makefile index ff23b20..4bb24de 100644 --- a/usr.sbin/named/Makefile +++ b/usr.sbin/named/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.18 1998/05/03 05:09:11 peter Exp $ +# $Id: Makefile,v 1.19 1998/05/03 05:25:09 peter Exp $ .include "${.CURDIR}/Makefile.inc" @@ -6,17 +6,15 @@ .PATH: ${BIND_DIR}/doc/man PROG= named -SRCS= tmp_version.c pathnames.h ns_parser.h \ +SRCS= tmp_version.c pathnames.h \ db_dump.c db_load.c db_lookup.c db_save.c db_update.c \ db_glue.c \ - ns_parser.c ns_lexer.c ns_parseutil.c \ + ns_parser.y ns_lexer.c ns_parseutil.c \ ns_forw.c ns_init.c ns_main.c ns_maint.c ns_req.c \ ns_resp.c ns_stats.c ns_ncache.c ns_xfr.c ns_glue.c \ ns_udp.c ns_config.c ns_update.c MAN8= named.8 -CLEANFILES+= ns_parser.c ns_parser.h y.tab.c t.tab.h - afterinstall: ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ ${BIND_DIR}/bin/named/named-bootconf.pl \ |