diff options
author | Bruce Evans <bde@FreeBSD.org> | 1998-05-04 18:41:16 +0000 |
---|---|---|
committer | Bruce Evans <bde@FreeBSD.org> | 1998-05-04 18:41:16 +0000 |
commit | 7e44350e47f6ed5e035545a77d695120b115439d (patch) | |
tree | efa842948a31ce16c3e4411831814eb2df6faa16 /bin/expr/Makefile | |
parent | 2cf0660ceab825273eeb30f9104e2bcfaefcc026 (diff) | |
download | src-7e44350e47f6ed5e035545a77d695120b115439d.tar.gz src-7e44350e47f6ed5e035545a77d695120b115439d.zip |
Simplified using new yacc rules and by not generating y.tab.h.
Notes
Notes:
svn path=/head/; revision=35702
Diffstat (limited to 'bin/expr/Makefile')
-rw-r--r-- | bin/expr/Makefile | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/bin/expr/Makefile b/bin/expr/Makefile index 550797174c67..215b498db522 100644 --- a/bin/expr/Makefile +++ b/bin/expr/Makefile @@ -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> - |