ee359ee1f8
* signed/unsigned comparisons * use standard warn(3) * Suppress warnings about local vars and funcs not declared static * const-correctness * declaration shadows a variable in the global scope Reviewed by: kevans MFC after: 2 weeks Differential Revision: https://reviews.freebsd.org/D26516
13 lines
230 B
Makefile
13 lines
230 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= fsx
|
|
|
|
MAN=
|
|
|
|
NO_WMISSING_VARIABLE_DECLARATIONS=
|
|
|
|
.include <bsd.prog.mk>
|
|
|
|
# Don't require static declarations. It's line noise in a single-file program.
|
|
CWARNFLAGS+= -Wno-strict-prototypes -Wno-missing-prototypes
|