opnsense-src/bin/expr/Makefile

20 lines
251 B
Makefile
Raw Normal View History

1999-08-27 19:15:48 -04:00
# $FreeBSD$
1993-06-18 21:55:46 -04:00
.include <src.opts.mk>
PACKAGE=runtime
PROG= expr
SRCS= expr.y
YFLAGS=
1993-06-12 10:58:17 -04:00
# expr relies on signed integer wrapping
CFLAGS+= -fwrapv
NO_WMISSING_VARIABLE_DECLARATIONS=
.if ${MK_TESTS} != "no"
SUBDIR+= tests
.endif
1993-06-12 10:58:17 -04:00
.include <bsd.prog.mk>