14 lines
213 B
Makefile
14 lines
213 B
Makefile
# /b/source/CVS/src/bin/expr/Makefile,v 1.5 1993/06/14 19:56:06 jtc Exp
|
|
# $Id$
|
|
|
|
PROG= expr
|
|
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>
|
|
|