script.1: Fix a typo, bump date.
[dragonfly.git] / sbin / ifconfig / Makefile
blob50b7bc425295c672eb36e0eb4a2befc7fc8b36b9
1 # From: @(#)Makefile 8.1 (Berkeley) 6/5/93
2 # $FreeBSD: src/sbin/ifconfig/Makefile,v 1.29 2005/06/05 03:32:51 thompsa Exp $
4 PROG= ifconfig
6 SRCS= ifconfig.c # base support
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
12 # to the registration process so we don't depend on this aspect
13 # of the toolchain.
15 SRCS+= af_link.c # LLC support
16 SRCS+= af_inet.c # IPv4 support
17 SRCS+= af_inet6.c # IPv6 support
19 SRCS+= ifclone.c # clone device support
20 #SRCS+= ifmac.c # MAC support
21 SRCS+= ifmedia.c # SIOC[GS]IFMEDIA support
22 SRCS+= ifvlan.c # SIOC[GS]ETVLAN support
23 SRCS+= ifieee80211.c # SIOC[GS]IEEE80211 support
24 SRCS+= regdomain.c
26 SRCS+= ifcarp.c # SIOC[GS]VH support
27 SRCS+= ifgroup.c # group support
28 #SRCS+= ifpfsync.c # pfsync(4) support
30 SRCS+= ifbridge.c # bridge support
31 SRCS+= iflagg.c # lagg support
33 DPADD= ${LIBBSDXML} ${LIBSBUF}
34 LDADD= -lbsdxml -lsbuf
36 MAN= ifconfig.8
38 WARNS?= 3
39 NO_STRICT_ALIASING=
41 .include <bsd.prog.mk>