diff options
author | phk <phk@FreeBSD.org> | 1996-05-30 20:44:09 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 1996-05-30 20:44:09 +0000 |
commit | 8ed246fa9a32cd3117399666e266ff30de8bc63a (patch) | |
tree | 4ccca72c93c0a51c0653fc19534ac612a838f3db /bin | |
parent | 83a65a2744b5cde2b12688b776e48a511a143ffe (diff) | |
download | FreeBSD-src-8ed246fa9a32cd3117399666e266ff30de8bc63a.zip FreeBSD-src-8ed246fa9a32cd3117399666e266ff30de8bc63a.tar.gz |
Use default yacc rule.
Diffstat (limited to 'bin')
-rw-r--r-- | bin/expr/Makefile | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/bin/expr/Makefile b/bin/expr/Makefile index 63c0055..1c98f36 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 <bsd.prog.mk> |