mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-20 02:01:19 +01:00
14 lines
211 B
Makefile
14 lines
211 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 y.tab.c expr.c
|
|
|
|
.include <bsd.prog.mk>
|
|
|