]> CyberLeo.Net >> Repos - FreeBSD/releng/10.2.git/blob - bin/expr/Makefile
- Copy stable/10@285827 to releng/10.2 in preparation for 10.2-RC1
[FreeBSD/releng/10.2.git] / bin / expr / Makefile
1 # $FreeBSD$
2
3 .include <bsd.own.mk>
4
5 PROG=   expr
6 SRCS=   expr.y
7 YFLAGS=
8
9 # expr relies on signed integer wrapping
10 CFLAGS+= -fwrapv
11
12 NO_WMISSING_VARIABLE_DECLARATIONS=
13
14 .if ${MK_TESTS} != "no"
15 SUBDIR+=        tests
16 .endif
17
18 .include <bsd.prog.mk>