1# $FreeBSD$ 2 3.include <src.opts.mk> 4 5PACKAGE=runtime 6PROG= expr 7SRCS= expr.y 8YFLAGS= 9 10# expr relies on signed integer wrapping 11CFLAGS+= -fwrapv 12 13NO_WMISSING_VARIABLE_DECLARATIONS= 14 15.if ${MK_TESTS} != "no" 16SUBDIR+= tests 17.endif 18 19.include <bsd.prog.mk> 20