1999-08-27 23:15:48 +00:00
|
|
|
# $FreeBSD$
|
1993-06-19 01:55:46 +00:00
|
|
|
|
2015-01-26 11:49:06 +00:00
|
|
|
.include <bsd.own.mk>
|
|
|
|
|
1998-05-04 18:41:16 +00:00
|
|
|
PROG= expr
|
|
|
|
SRCS= expr.y
|
|
|
|
YFLAGS=
|
1993-06-12 14:58:17 +00:00
|
|
|
|
2015-04-06 14:45:40 +00:00
|
|
|
# expr relies on signed integer wrapping
|
|
|
|
CFLAGS+= -fwrapv
|
|
|
|
|
2013-04-19 19:45:00 +00:00
|
|
|
NO_WMISSING_VARIABLE_DECLARATIONS=
|
|
|
|
|
2015-01-26 11:49:06 +00:00
|
|
|
.if ${MK_TESTS} != "no"
|
|
|
|
SUBDIR+= tests
|
|
|
|
.endif
|
|
|
|
|
1993-06-12 14:58:17 +00:00
|
|
|
.include <bsd.prog.mk>
|