c969922258
having defined behavior. Reported by: rodrigc MFC after: 3 days
19 lines
235 B
Makefile
19 lines
235 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
PROG= expr
|
|
SRCS= expr.y
|
|
YFLAGS=
|
|
|
|
# expr relies on signed integer wrapping
|
|
CFLAGS+= -fwrapv
|
|
|
|
NO_WMISSING_VARIABLE_DECLARATIONS=
|
|
|
|
.if ${MK_TESTS} != "no"
|
|
SUBDIR+= tests
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|