Rename the directive_hash.[ch] files to hash_tables.[ch] now

that there are more than one hash table in them. There is no
history to preserve here, so go without a repo-copy.

Asked for by:	Max Okumoto <okumoto@ucsd.edu>
This commit is contained in:
Hartmut Brandt 2005-04-29 15:15:28 +00:00
parent e32931227c
commit be7a5506e8
4 changed files with 10 additions and 11 deletions

View File

@ -4,9 +4,9 @@
PROG= make PROG= make
CFLAGS+=-I${.CURDIR} CFLAGS+=-I${.CURDIR}
SRCS= arch.c buf.c compat.c cond.c dir.c directive_hash.c for.c \ SRCS= arch.c buf.c compat.c cond.c dir.c for.c hash.c hash_tables.c \
hash.c job.c lst.c main.c make.c parse.c str.c suff.c targ.c \ job.c lst.c main.c make.c parse.c str.c suff.c targ.c util.c \
util.c var.c var_modify.c var.c var_modify.c
NO_WERROR= NO_WERROR=
WARNS?= 3 WARNS?= 3
@ -56,7 +56,7 @@ hash:
echo ' */' ; \ echo ' */' ; \
echo '#include <sys/types.h>' ; \ echo '#include <sys/types.h>' ; \
echo ; \ echo ; \
echo '#include "directive_hash.h"' ; \ echo '#include "hash_tables.h"' ; \
echo ; \ echo ; \
cat ${.CURDIR}/parse.c | sed \ cat ${.CURDIR}/parse.c | sed \
-e '1,/DIRECTIVES-START-TAG/d' \ -e '1,/DIRECTIVES-START-TAG/d' \
@ -91,7 +91,7 @@ hash:
-e 's/= T0\[/= keyword_T0\[/' \ -e 's/= T0\[/= keyword_T0\[/' \
-e 's/= T1\[/= keyword_T1\[/' \ -e 's/= T1\[/= keyword_T1\[/' \
-e 's/g\[f/keyword_g[f/g' \ -e 's/g\[f/keyword_g[f/g' \
) > ${.CURDIR}/directive_hash.c ) > ${.CURDIR}/hash_tables.c
# Set the shell which make(1) uses. Bourne is the default, but a decent # Set the shell which make(1) uses. Bourne is the default, but a decent
# Korn shell works fine, and much faster. Using the C shell for this # Korn shell works fine, and much faster. Using the C shell for this

View File

@ -1,12 +1,12 @@
/* /*
* DO NOT EDIT * DO NOT EDIT
* $FreeBSD$ * $FreeBSD$
* auto-generated from FreeBSD: src/usr.bin/make/parse.c,v 1.98 2005/04/28 12:05:43 harti Exp * auto-generated from FreeBSD: src/usr.bin/make/parse.c,v 1.99 2005/04/29 14:37:44 harti Exp
* DO NOT EDIT * DO NOT EDIT
*/ */
#include <sys/types.h> #include <sys/types.h>
#include "directive_hash.h" #include "hash_tables.h"
/* /*
* d=2 * d=2

View File

@ -23,11 +23,10 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE. * SUCH DAMAGE.
* *
* $DragonFly$
* $FreeBSD$ * $FreeBSD$
*/ */
#ifndef directive_hash_h_ #ifndef hash_tables_h_
#define directive_hash_h_ #define hash_tables_h_
#include <sys/types.h> #include <sys/types.h>

View File

@ -82,10 +82,10 @@ __FBSDID("$FreeBSD$");
#include "cond.h" #include "cond.h"
#include "config.h" #include "config.h"
#include "dir.h" #include "dir.h"
#include "directive_hash.h"
#include "for.h" #include "for.h"
#include "globals.h" #include "globals.h"
#include "GNode.h" #include "GNode.h"
#include "hash_tables.h"
#include "job.h" #include "job.h"
#include "make.h" #include "make.h"
#include "nonints.h" #include "nonints.h"