From cb0af0dbc3b966c9c3c68ce1bca3354eb93db52d Mon Sep 17 00:00:00 2001 From: phk Date: Sun, 2 Jun 1996 17:05:48 +0000 Subject: [PATCH] Backout yacc changes --- bin/expr/Makefile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/bin/expr/Makefile b/bin/expr/Makefile index 1c98f3631982..e360adf00dc5 100644 --- a/bin/expr/Makefile +++ b/bin/expr/Makefile @@ -2,8 +2,12 @@ # $Id: Makefile,v 1.8 1996/05/07 23:14:17 wosch Exp $ PROG= expr -SRCS= expr.y -CLEANFILES+= expr.c expr.tab.h +SRCS= expr.c +CLEANFILES+= expr.c y.tab.h + +expr.c: + ${YACC} -d ${.IMPSRC} + mv -f y.tab.c expr.c .include