a1199adebc
- Don't link against libkvm and don't uselessly include <kvm.h>. - Declare constant objects as const. - Declare functions with the correct types. - Call functions with the correct parameters. Not fixed: - The sysctl parsing remains ugly (but it may be the best we can do). - atnetrange() should use strtoul() rather than sscanf() for better error checking.
12 lines
224 B
Makefile
12 lines
224 B
Makefile
# From: @(#)Makefile 8.1 (Berkeley) 6/5/93
|
|
# $Id$
|
|
|
|
PROG= ifconfig
|
|
MAN8= ifconfig.8
|
|
DPADD= ${LIBIPX}
|
|
LDADD= -lipx
|
|
COPTS= -DNS -Wall -Wmissing-prototypes -Wcast-qual -Wwrite-strings \
|
|
-Wnested-externs
|
|
|
|
.include <bsd.prog.mk>
|