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