Deleted Added
full compact
Makefile (168563) Makefile (168793)
1# From: @(#)Makefile 8.1 (Berkeley) 6/5/93
1# From: @(#)Makefile 8.1 (Berkeley) 6/5/93
2# $FreeBSD: head/sbin/ifconfig/Makefile 168563 2007-04-10 00:35:31Z thompsa $
2# $FreeBSD: head/sbin/ifconfig/Makefile 168793 2007-04-17 00:35:11Z thompsa $
3
4.include <bsd.own.mk>
5
6PROG= ifconfig
7
8SRCS= ifconfig.c # base support
9
10#

--- 14 unchanged lines hidden (view full) ---

25SRCS+= ifvlan.c # SIOC[GS]ETVLAN support
26SRCS+= ifieee80211.c # SIOC[GS]IEEE80211 support
27
28SRCS+= ifcarp.c # SIOC[GS]VH support
29SRCS+= ifgroup.c # ...
30SRCS+= ifpfsync.c # pfsync(4) support
31
32SRCS+= ifbridge.c # bridge support
3
4.include <bsd.own.mk>
5
6PROG= ifconfig
7
8SRCS= ifconfig.c # base support
9
10#

--- 14 unchanged lines hidden (view full) ---

25SRCS+= ifvlan.c # SIOC[GS]ETVLAN support
26SRCS+= ifieee80211.c # SIOC[GS]IEEE80211 support
27
28SRCS+= ifcarp.c # SIOC[GS]VH support
29SRCS+= ifgroup.c # ...
30SRCS+= ifpfsync.c # pfsync(4) support
31
32SRCS+= ifbridge.c # bridge support
33SRCS+= iftrunk.c # trunk support
33SRCS+= iflagg.c # lagg support
34
35.if ${MK_IPX_SUPPORT} != "no" && !defined(RELEASE_CRUNCH)
36SRCS+= af_ipx.c # IPX support
37DPADD= ${LIBIPX}
38LDADD= -lipx
39.endif
40
41MAN= ifconfig.8
42
43CFLAGS+= -Wall -Wmissing-prototypes -Wcast-qual -Wwrite-strings -Wnested-externs
44WARNS?= 0
45
46.include <bsd.prog.mk>
34
35.if ${MK_IPX_SUPPORT} != "no" && !defined(RELEASE_CRUNCH)
36SRCS+= af_ipx.c # IPX support
37DPADD= ${LIBIPX}
38LDADD= -lipx
39.endif
40
41MAN= ifconfig.8
42
43CFLAGS+= -Wall -Wmissing-prototypes -Wcast-qual -Wwrite-strings -Wnested-externs
44WARNS?= 0
45
46.include <bsd.prog.mk>