aboutsummaryrefslogtreecommitdiff
path: root/bin/expr/Makefile
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>1996-06-02 17:05:48 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>1996-06-02 17:05:48 +0000
commitfc15a73012f23e85d03c74b10f47e6f2b463b340 (patch)
tree44e0090fc5bf0f6cfeb9b9b6828fa15c9f838c7d /bin/expr/Makefile
parent006f5fe068ed7a34780944be7d9051a26a9f3838 (diff)
downloadsrc-fc15a73012f23e85d03c74b10f47e6f2b463b340.tar.gz
src-fc15a73012f23e85d03c74b10f47e6f2b463b340.zip
Backout yacc changes
Notes
Notes: svn path=/head/; revision=16069
Diffstat (limited to 'bin/expr/Makefile')
-rw-r--r--bin/expr/Makefile8
1 files 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 <bsd.prog.mk>