]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sbin/ifconfig/Makefile
This commit was generated by cvs2svn to compensate for changes in r156373,
[FreeBSD/FreeBSD.git] / sbin / ifconfig / Makefile
1 #       From: @(#)Makefile      8.1 (Berkeley) 6/5/93
2 # $FreeBSD$
3
4 PROG=   ifconfig
5
6 SRCS=   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 #
15 SRCS+=  af_link.c               # LLC support
16 SRCS+=  af_inet.c               # IPv4 support
17 SRCS+=  af_inet6.c              # IPv6 support
18 SRCS+=  af_atalk.c              # AppleTalk support
19
20 SRCS+=  ifclone.c               # clone device support
21 SRCS+=  ifmac.c                 # MAC support
22 SRCS+=  ifmedia.c               # SIOC[GS]IFMEDIA support
23 SRCS+=  ifvlan.c                # SIOC[GS]ETVLAN support
24 SRCS+=  ifieee80211.c           # SIOC[GS]IEEE80211 support
25
26 SRCS+=  ifcarp.c                # SIOC[GS]VH support
27 SRCS+=  ifpfsync.c              # pfsync(4) support
28
29 SRCS+=  ifbridge.c              # bridge support
30
31 .if !defined(RELEASE_CRUNCH)
32 SRCS+=  af_ipx.c                # IPX support
33 DPADD=  ${LIBIPX}
34 LDADD=  -lipx
35 .endif
36
37 MAN=    ifconfig.8
38
39 CFLAGS+= -Wall -Wmissing-prototypes -Wcast-qual -Wwrite-strings -Wnested-externs
40 WARNS?= 0
41
42 .include <bsd.prog.mk>