Deleted Added
full compact
Makefile (146987) Makefile (156905)
1# From: @(#)Makefile 8.1 (Berkeley) 6/5/93
1# From: @(#)Makefile 8.1 (Berkeley) 6/5/93
2# $FreeBSD: head/sbin/ifconfig/Makefile 146987 2005-06-05 03:32:53Z thompsa $
2# $FreeBSD: head/sbin/ifconfig/Makefile 156905 2006-03-20 14:24:58Z ru $
3
3
4.include <bsd.own.mk>
5
4PROG= ifconfig
5
6SRCS= ifconfig.c # base support
7
8#
9# NB: The order here defines the order in which the constructors
10# are called. This in turn defines the default order in which
11# status is displayed. Probably should add a priority mechanism

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

23SRCS+= ifvlan.c # SIOC[GS]ETVLAN support
24SRCS+= ifieee80211.c # SIOC[GS]IEEE80211 support
25
26SRCS+= ifcarp.c # SIOC[GS]VH support
27SRCS+= ifpfsync.c # pfsync(4) support
28
29SRCS+= ifbridge.c # bridge support
30
6PROG= ifconfig
7
8SRCS= ifconfig.c # base support
9
10#
11# NB: The order here defines the order in which the constructors
12# are called. This in turn defines the default order in which
13# status is displayed. Probably should add a priority mechanism

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

25SRCS+= ifvlan.c # SIOC[GS]ETVLAN support
26SRCS+= ifieee80211.c # SIOC[GS]IEEE80211 support
27
28SRCS+= ifcarp.c # SIOC[GS]VH support
29SRCS+= ifpfsync.c # pfsync(4) support
30
31SRCS+= ifbridge.c # bridge support
32
31.if !defined(RELEASE_CRUNCH)
33.if ${MK_IPX_SUPPORT} != "no" && !defined(RELEASE_CRUNCH)
32SRCS+= af_ipx.c # IPX support
33DPADD= ${LIBIPX}
34LDADD= -lipx
35.endif
36
37MAN= ifconfig.8
38
39CFLAGS+= -Wall -Wmissing-prototypes -Wcast-qual -Wwrite-strings -Wnested-externs
40WARNS?= 0
41
42.include <bsd.prog.mk>
34SRCS+= af_ipx.c # IPX support
35DPADD= ${LIBIPX}
36LDADD= -lipx
37.endif
38
39MAN= ifconfig.8
40
41CFLAGS+= -Wall -Wmissing-prototypes -Wcast-qual -Wwrite-strings -Wnested-externs
42WARNS?= 0
43
44.include <bsd.prog.mk>