Deleted Added
full compact
Makefile (263140) Makefile (263152)
1# From: @(#)Makefile 8.1 (Berkeley) 6/5/93
1# From: @(#)Makefile 8.1 (Berkeley) 6/5/93
2# $FreeBSD: head/sbin/ifconfig/Makefile 263140 2014-03-14 02:58:48Z glebius $
2# $FreeBSD: head/sbin/ifconfig/Makefile 263152 2014-03-14 06:29:43Z glebius $
3
4.include <bsd.own.mk>
5
6PROG= ifconfig
7
8SRCS= ifconfig.c # base support
9
10#

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

16#
17SRCS+= af_link.c # LLC support
18.if ${MK_INET_SUPPORT} != "no"
19SRCS+= af_inet.c # IPv4 support
20.endif
21.if ${MK_INET6_SUPPORT} != "no"
22SRCS+= af_inet6.c # IPv6 support
23.endif
3
4.include <bsd.own.mk>
5
6PROG= ifconfig
7
8SRCS= ifconfig.c # base support
9
10#

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

16#
17SRCS+= af_link.c # LLC support
18.if ${MK_INET_SUPPORT} != "no"
19SRCS+= af_inet.c # IPv4 support
20.endif
21.if ${MK_INET6_SUPPORT} != "no"
22SRCS+= af_inet6.c # IPv6 support
23.endif
24SRCS+= af_atalk.c # AppleTalk support
25.if ${MK_INET6_SUPPORT} != "no"
26SRCS+= af_nd6.c # ND6 support
27.endif
28
29SRCS+= ifclone.c # clone device support
30SRCS+= ifmac.c # MAC support
31SRCS+= ifmedia.c # SIOC[GS]IFMEDIA support
32SRCS+= iffib.c # non-default FIB support

--- 35 unchanged lines hidden ---
24.if ${MK_INET6_SUPPORT} != "no"
25SRCS+= af_nd6.c # ND6 support
26.endif
27
28SRCS+= ifclone.c # clone device support
29SRCS+= ifmac.c # MAC support
30SRCS+= ifmedia.c # SIOC[GS]IFMEDIA support
31SRCS+= iffib.c # non-default FIB support

--- 35 unchanged lines hidden ---