9906480a84
can be trivially disabled.
18 lines
378 B
Makefile
18 lines
378 B
Makefile
# From: @(#)Makefile 8.1 (Berkeley) 6/5/93
|
|
# $Id: Makefile,v 1.9 1997/02/22 14:32:32 peter Exp $
|
|
|
|
PROG= ifconfig
|
|
SRCS= ifconfig.c
|
|
|
|
#comment out to exclude SIOC[GS]IFMEDIA support
|
|
SRCS+= ifmedia.c
|
|
CFLAGS+=-DUSE_IF_MEDIA
|
|
|
|
MAN8= ifconfig.8
|
|
DPADD= ${LIBIPX}
|
|
LDADD= -lipx
|
|
COPTS= -DNS -Wall -Wmissing-prototypes -Wcast-qual -Wwrite-strings \
|
|
-Wnested-externs
|
|
|
|
.include <bsd.prog.mk>
|