ecebb3cc1d
This would allow interested parties to do experimental runs with an environment set appropriately to raise all the warnings throughout the build; e.g. env WARNS=6 NO_WERROR=yes buildworld. Not currently touching the numerous instances in ^/tools. MFC after: 1 week
16 lines
256 B
Makefile
16 lines
256 B
Makefile
# $FreeBSD$
|
|
|
|
PACKAGE=runtime
|
|
PROG= gvinum
|
|
SRCS= gvinum.c gvinum.h geom_vinum_share.c
|
|
MAN= gvinum.8
|
|
|
|
WARNS?= 2
|
|
CFLAGS+= -I${SRCTOP}/sys -I${SYSROOT:U${DESTDIR}}/${INCLUDEDIR}/edit
|
|
|
|
LIBADD= edit geom
|
|
|
|
.PATH: ${SRCTOP}/sys/geom/vinum
|
|
|
|
.include <bsd.prog.mk>
|