Makefile revision 74815
1#	From: @(#)Makefile	8.1 (Berkeley) 6/5/93
2# $FreeBSD: head/sbin/ifconfig/Makefile 74815 2001-03-26 14:33:27Z 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
18MAN=	ifconfig.8
19DPADD=	${LIBIPX}
20LDADD=	-lipx
21COPTS=	-DNS -Wall -Wmissing-prototypes -Wcast-qual -Wwrite-strings \
22	-Wnested-externs -I..
23
24.include <bsd.prog.mk>
25