ac2875fa16
Note: tcsh(1) has a MK_TCSH=no test, so this should be a separate package, which requires pre-install/post-install scripts, to be added later. Sponsored by: The FreeBSD Foundation
20 lines
251 B
Makefile
20 lines
251 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
PACKAGE=runtime
|
|
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>
|