Simplified using new yacc rules and by not generating y.tab.h.

This commit is contained in:
Bruce Evans 1998-05-04 18:41:16 +00:00
parent 2cf0660cea
commit 7e44350e47
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=35702

View File

@ -1,13 +1,7 @@
# /b/source/CVS/src/bin/expr/Makefile,v 1.5 1993/06/14 19:56:06 jtc Exp
# $Id$
# $Id: Makefile,v 1.12 1997/02/22 14:03:36 peter Exp $
PROG= expr
SRCS= expr.c
CLEANFILES+= expr.c y.tab.h
expr.c:
${YACC} -d ${.IMPSRC}
mv -f y.tab.c expr.c
PROG= expr
SRCS= expr.y
YFLAGS=
.include <bsd.prog.mk>