Deleted Added
full compact
Makefile (168793) Makefile (178354)
1# From: @(#)Makefile 8.1 (Berkeley) 6/5/93
1# From: @(#)Makefile 8.1 (Berkeley) 6/5/93
2# $FreeBSD: head/sbin/ifconfig/Makefile 168793 2007-04-17 00:35:11Z thompsa $
2# $FreeBSD: head/sbin/ifconfig/Makefile 178354 2008-04-20 20:35:46Z sam $
3
4.include <bsd.own.mk>
5
6PROG= ifconfig
7
8SRCS= ifconfig.c # base support
9
10#

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

18SRCS+= af_inet.c # IPv4 support
19SRCS+= af_inet6.c # IPv6 support
20SRCS+= af_atalk.c # AppleTalk support
21
22SRCS+= ifclone.c # clone device support
23SRCS+= ifmac.c # MAC support
24SRCS+= ifmedia.c # SIOC[GS]IFMEDIA support
25SRCS+= ifvlan.c # SIOC[GS]ETVLAN support
3
4.include <bsd.own.mk>
5
6PROG= ifconfig
7
8SRCS= ifconfig.c # base support
9
10#

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

18SRCS+= af_inet.c # IPv4 support
19SRCS+= af_inet6.c # IPv6 support
20SRCS+= af_atalk.c # AppleTalk support
21
22SRCS+= ifclone.c # clone device support
23SRCS+= ifmac.c # MAC support
24SRCS+= ifmedia.c # SIOC[GS]IFMEDIA support
25SRCS+= ifvlan.c # SIOC[GS]ETVLAN support
26SRCS+= ifieee80211.c # SIOC[GS]IEEE80211 support
27
26
27SRCS+= ifieee80211.c regdomain.c # SIOC[GS]IEEE80211 support
28DPADD+= ${LIBBSDXML} ${LIBSBUF}
29LDADD+= -lbsdxml -lsbuf
30
28SRCS+= ifcarp.c # SIOC[GS]VH support
29SRCS+= ifgroup.c # ...
30SRCS+= ifpfsync.c # pfsync(4) support
31
32SRCS+= ifbridge.c # bridge support
33SRCS+= iflagg.c # lagg support
34
35.if ${MK_IPX_SUPPORT} != "no" && !defined(RELEASE_CRUNCH)
36SRCS+= af_ipx.c # IPX support
31SRCS+= ifcarp.c # SIOC[GS]VH support
32SRCS+= ifgroup.c # ...
33SRCS+= ifpfsync.c # pfsync(4) support
34
35SRCS+= ifbridge.c # bridge support
36SRCS+= iflagg.c # lagg support
37
38.if ${MK_IPX_SUPPORT} != "no" && !defined(RELEASE_CRUNCH)
39SRCS+= af_ipx.c # IPX support
37DPADD= ${LIBIPX}
38LDADD= -lipx
40DPADD+= ${LIBIPX}
41LDADD+= -lipx
39.endif
40
41MAN= ifconfig.8
42
43CFLAGS+= -Wall -Wmissing-prototypes -Wcast-qual -Wwrite-strings -Wnested-externs
44WARNS?= 0
45
46.include <bsd.prog.mk>
42.endif
43
44MAN= ifconfig.8
45
46CFLAGS+= -Wall -Wmissing-prototypes -Wcast-qual -Wwrite-strings -Wnested-externs
47WARNS?= 0
48
49.include <bsd.prog.mk>