mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-11-27 00:33:30 +00:00
d0b2dbfa0e
Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
18 lines
231 B
Makefile
18 lines
231 B
Makefile
|
|
.include <src.opts.mk>
|
|
|
|
PACKAGE=runtime
|
|
PROG= expr
|
|
SRCS= expr.y
|
|
YFLAGS=
|
|
|
|
# expr relies on signed integer wrapping
|
|
CFLAGS+= -fwrapv
|
|
|
|
NO_WMISSING_VARIABLE_DECLARATIONS=
|
|
|
|
HAS_TESTS=
|
|
SUBDIR.${MK_TESTS}+= tests
|
|
|
|
.include <bsd.prog.mk>
|