Makefile revision 54624
1#	From: @(#)Makefile	8.1 (Berkeley) 6/5/93
2# $FreeBSD: head/sbin/ifconfig/Makefile 54624 1999-12-15 05:13:22Z shin $
3
4PROG=	ifconfig
5SRCS=	ifconfig.c
6
7#comment out to exclude SIOC[GS]IFMEDIA support
8SRCS+=	ifmedia.c
9CFLAGS+=-DUSE_IF_MEDIA
10CFLAGS+=-DINET6
11
12#comment out to exclude SIOC[GS]ETVLAN support
13SRCS+=	ifvlan.c
14CFLAGS+=-DUSE_VLANS
15
16MAN8=	ifconfig.8
17DPADD=	${LIBIPX}
18LDADD=	-lipx
19COPTS=	-DNS -Wall -Wmissing-prototypes -Wcast-qual -Wwrite-strings \
20	-Wnested-externs -I..
21
22.include <bsd.prog.mk>
23