wg.conf.5: Fix a typo (in-inline comments are *not* allowed)
[dragonfly.git] / sbin / ifconfig / Makefile
blobcfa2e6b2586c963973caa83d2a8467e10e44b2e9
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
8 # NB: The constructor priority defines their calling orders; one with
9 # a smaller priority is called earlier. The calling order of the
10 # constructors in turn defines the default order in which status
11 # is displayed.
13 SRCS+= af_link.c # LLC support
14 SRCS+= af_inet.c # IPv4 support
15 SRCS+= af_inet6.c # IPv6 support
17 SRCS+= ifclone.c # clone device support
18 #SRCS+= ifmac.c # MAC support
19 SRCS+= ifmedia.c # SIOC[GS]IFMEDIA support
20 SRCS+= ifvlan.c # SIOC[GS]ETVLAN support
21 SRCS+= ifieee80211.c # SIOC[GS]IEEE80211 support
22 SRCS+= regdomain.c
24 SRCS+= ifcarp.c # SIOC[GS]VH support
25 SRCS+= ifgroup.c # group support
26 #SRCS+= ifpfsync.c # pfsync(4) support
28 SRCS+= ifbridge.c # bridge support
29 SRCS+= iflagg.c # lagg support
30 SRCS+= ifwg.c # WireGuard wg(4) support
32 DPADD= ${LIBBSDXML} ${LIBSBUF}
33 LDADD= -lbsdxml -lsbuf
35 MAN= ifconfig.8
37 NO_STRICT_ALIASING=
39 .include <bsd.prog.mk>