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