mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-12-27 13:34:00 +01:00
9fb933075e
``rm'' -> ``rm -f'' so mv/rm may not ask for confirmation if you are not root
14 lines
262 B
Makefile
14 lines
262 B
Makefile
# /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 $
|
|
|
|
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>
|
|
|