Deleted Added
full compact
Makefile (77217) Makefile (80057)
1# From: @(#)Makefile 8.1 (Berkeley) 6/5/93
1# From: @(#)Makefile 8.1 (Berkeley) 6/5/93
2# $FreeBSD: head/sbin/ifconfig/Makefile 77217 2001-05-26 09:27:08Z phk $
2# $FreeBSD: head/sbin/ifconfig/Makefile 80057 2001-07-21 00:35:11Z obrien $
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)

--- 4 unchanged lines hidden (view full) ---

15CFLAGS+=-DUSE_VLANS
16.endif
17
18#comment out to exclude SIOC[GS]IEEE80211 support
19SRCS+= ifieee80211.c
20CFLAGS+=-DUSE_IEEE80211
21
22MAN= ifconfig.8
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)

--- 4 unchanged lines hidden (view full) ---

15CFLAGS+=-DUSE_VLANS
16.endif
17
18#comment out to exclude SIOC[GS]IEEE80211 support
19SRCS+= ifieee80211.c
20CFLAGS+=-DUSE_IEEE80211
21
22MAN= ifconfig.8
23
24.if defined(RELEASE_CRUNCH)
25CFLAGS+=-DNO_IPX
26.else
23DPADD= ${LIBIPX}
24LDADD= -lipx
27DPADD= ${LIBIPX}
28LDADD= -lipx
29.endif
30
25COPTS= -DNS -Wall -Wmissing-prototypes -Wcast-qual -Wwrite-strings \
26 -Wnested-externs -I..
27
28.include <bsd.prog.mk>
31COPTS= -DNS -Wall -Wmissing-prototypes -Wcast-qual -Wwrite-strings \
32 -Wnested-externs -I..
33
34.include <bsd.prog.mk>