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 $ 3 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 12# to the registration process so we don't depend on this aspect 13# of the toolchain. 14# 15SRCS+= af_link.c # LLC support 16SRCS+= af_inet.c # IPv4 support 17SRCS+= af_inet6.c # IPv6 support 18 19SRCS+= ifclone.c # clone device support 20SRCS+= iflagg.c 21#SRCS+= ifmac.c # MAC support 22SRCS+= ifmedia.c # SIOC[GS]IFMEDIA support 23SRCS+= ifvlan.c # SIOC[GS]ETVLAN support 24SRCS+= ifieee80211.c # SIOC[GS]IEEE80211 support 25SRCS+= regdomain.c 26 27SRCS+= ifcarp.c # SIOC[GS]VH support 28#SRCS+= ifpfsync.c # pfsync(4) support 29 30SRCS+= ifbridge.c # bridge support 31 32DPADD= ${LIBBSDXML} ${LIBSBUF} 33LDADD= -lbsdxml -lsbuf 34 35MAN= ifconfig.8 36 37WARNS= 2 38NO_STRICT_ALIASING= 39 40.include <bsd.prog.mk> 41