From 225e2a04f3e1596967ea2efa61457a8429e37319 Mon Sep 17 00:00:00 2001 From: Bruce Evans Date: Mon, 4 May 1998 16:18:57 +0000 Subject: Symlink awk.y to awktab.y so that the default yacc rules apply, and use the (new) default yacc rules. This is cosmetic - the special rule was good enough here because y.tab.h is not used. Don't generate y.output. --- gnu/usr.bin/awk/Makefile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'gnu') diff --git a/gnu/usr.bin/awk/Makefile b/gnu/usr.bin/awk/Makefile index 1db89d57f988..bd3e4a1118e4 100644 --- a/gnu/usr.bin/awk/Makefile +++ b/gnu/usr.bin/awk/Makefile @@ -1,32 +1,32 @@ # Makefile copyright James Raynard (jraynard@freebsd.org) 1997 # -# $Id: Makefile,v 1.9 1997/10/26 12:20:45 ache Exp $ +# $Id: Makefile,v 1.10 1997/10/26 12:53:16 jraynard Exp $ .include "${.CURDIR}/../Makefile.inc" .PATH: ${.CURDIR}/../../../contrib/awk PROG= awk -SRCS= array.c awktab.c builtin.c eval.c field.c gawkmisc.c io.c main.c \ +SRCS= array.c awktab.y builtin.c eval.c field.c gawkmisc.c io.c main.c \ msg.c node.c re.c version.c dfa.c getopt.c getopt1.c MAN1= doc/awk.1 YACC = bison -y +YFLAGS= # Important for ctype macros! CFLAGS+= -funsigned-char CFLAGS+= -I${.CURDIR} -I${.CURDIR}/../../../contrib/awk CFLAGS+= -DHAVE_CONFIG_H -DGAWK -DDEFPATH=\".\" -CLEANFILES +=awktab.c y.output y.tab.h +CLEANFILES= awktab.y SUBDIR+= doc DPADD+= ${LIBGNUREGEX} ${LIBM} LDADD+= -lgnuregex -lm - -awktab.c: ${.CURDIR}/../../../contrib/awk/awk.y - $(YACC) -v $> && mv y.tab.c awktab.c +awktab.y: awk.y + ln -fs ${.ALLSRC} ${.TARGET} .include -- cgit v1.3