Deleted Added
full compact
Makefile (194871) Makefile (197138)
1# From: @(#)Makefile 8.1 (Berkeley) 6/5/93
1# From: @(#)Makefile 8.1 (Berkeley) 6/5/93
2# $FreeBSD: head/sbin/ifconfig/Makefile 194871 2009-06-24 18:21:37Z jamie $
2# $FreeBSD: head/sbin/ifconfig/Makefile 197138 2009-09-12 22:08:20Z hrs $
3
4.include <bsd.own.mk>
5
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
14# to the registration process so we don't depend on this aspect
15# of the toolchain.
16#
17SRCS+= af_link.c # LLC support
18SRCS+= af_inet.c # IPv4 support
19SRCS+= af_inet6.c # IPv6 support
20SRCS+= af_atalk.c # AppleTalk support
3
4.include <bsd.own.mk>
5
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
14# to the registration process so we don't depend on this aspect
15# of the toolchain.
16#
17SRCS+= af_link.c # LLC support
18SRCS+= af_inet.c # IPv4 support
19SRCS+= af_inet6.c # IPv6 support
20SRCS+= af_atalk.c # AppleTalk support
21SRCS+= af_nd6.c # ND6 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+= ifgre.c # GRE keys etc
27SRCS+= ifgif.c # GIF reversed header workaround
28

--- 23 unchanged lines hidden ---
22
23SRCS+= ifclone.c # clone device support
24SRCS+= ifmac.c # MAC support
25SRCS+= ifmedia.c # SIOC[GS]IFMEDIA support
26SRCS+= ifvlan.c # SIOC[GS]ETVLAN support
27SRCS+= ifgre.c # GRE keys etc
28SRCS+= ifgif.c # GIF reversed header workaround
29

--- 23 unchanged lines hidden ---