Deleted Added
full compact
Makefile (74815) Makefile (77217)
1# From: @(#)Makefile 8.1 (Berkeley) 6/5/93
1# From: @(#)Makefile 8.1 (Berkeley) 6/5/93
2# $FreeBSD: head/sbin/ifconfig/Makefile 74815 2001-03-26 14:33:27Z ru $
2# $FreeBSD: head/sbin/ifconfig/Makefile 77217 2001-05-26 09:27:08Z phk $
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
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
18#comment out to exclude SIOC[GS]IEEE80211 support
19SRCS+= ifieee80211.c
20CFLAGS+=-DUSE_IEEE80211
21
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>
22MAN= ifconfig.8
23DPADD= ${LIBIPX}
24LDADD= -lipx
25COPTS= -DNS -Wall -Wmissing-prototypes -Wcast-qual -Wwrite-strings \
26 -Wnested-externs -I..
27
28.include <bsd.prog.mk>