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
17 lines
233 B
Makefile
17 lines
233 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/5/93
|
|
# $FreeBSD$
|
|
|
|
PACKAGE=runtime
|
|
PROG= tunefs
|
|
SRCS= tunefs.c getmntopts.c
|
|
LIBADD= ufs
|
|
MAN= tunefs.8
|
|
|
|
MOUNT= ${SRCTOP}/sbin/mount
|
|
CFLAGS+= -I${MOUNT}
|
|
.PATH: ${MOUNT}
|
|
|
|
WARNS?= 3
|
|
|
|
.include <bsd.prog.mk>
|