From aa0e82cf5e51991644d271aaa458a23efce457c8 Mon Sep 17 00:00:00 2001 From: Poul-Henning Kamp Date: Thu, 30 May 1996 20:44:09 +0000 Subject: [PATCH] Use default yacc rule. --- bin/expr/Makefile | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/bin/expr/Makefile b/bin/expr/Makefile index 63c0055d945d..1c98f3631982 100644 --- a/bin/expr/Makefile +++ b/bin/expr/Makefile @@ -1,13 +1,9 @@ # /b/source/CVS/src/bin/expr/Makefile,v 1.5 1993/06/14 19:56:06 jtc Exp -# $Id: Makefile,v 1.7 1995/05/30 00:06:49 rgrimes Exp $ +# $Id: Makefile,v 1.8 1996/05/07 23:14:17 wosch Exp $ PROG= expr -SRCS= expr.c -CLEANFILES+= expr.c y.tab.h - -expr.c: - ${YACC} -d ${.IMPSRC} - mv -f y.tab.c expr.c +SRCS= expr.y +CLEANFILES+= expr.c expr.tab.h .include