aa54e1ecc5
printf format warnings for inet6.c (pluralies() was implicit int, but the context requires a "char *"). Added WARNS?=2 to the Makefile so that such errors don't come back. Added NO_WERROR?= to the Makefile because I haven't checked that setting WARNS doesn't uncover more bugs except on i386's.
18 lines
370 B
Makefile
18 lines
370 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/12/93
|
|
# $FreeBSD$
|
|
|
|
PROG= netstat
|
|
SRCS= if.c inet.c inet6.c main.c mbuf.c mroute.c ipx.c route.c \
|
|
unix.c atalk.c netgraph.c mroute6.c ipsec.c
|
|
CFLAGS+=-DIPSEC
|
|
CFLAGS+=-DINET6
|
|
WARNS?= 2
|
|
NO_WERROR?=
|
|
|
|
BINGRP= kmem
|
|
BINMODE=2555
|
|
DPADD= ${LIBKVM} ${LIBIPX} ${LIBNETGRAPH} ${LIBUTIL}
|
|
LDADD= -lkvm -lipx -lnetgraph -lutil
|
|
|
|
.include <bsd.prog.mk>
|