Makefile revision 1.33
1#	$NetBSD: Makefile,v 1.33 2008/05/06 04:40:45 dyoung Exp $
2#	@(#)Makefile	8.1 (Berkeley) 6/5/93
3
4# when making a change to this file, please check if the change is
5# also needed for src/distrib/utils/x_ifconfig/Makefile.
6
7.include <bsd.own.mk>
8
9PROG=	ifconfig
10MAN=	ifconfig.8
11
12CPPFLAGS+=	-I${NETBSDSRCDIR}/sys/ -Wall -Wno-unused-parameter -pedantic -std=c99
13
14.if (${USE_INET6} != "no")
15CPPFLAGS+=-DINET6
16.endif
17
18DPADD+=${LIBUTIL}
19LDADD+=-lutil
20LDADD+=-lprop
21
22SRCS= ifconfig.c 
23
24SRCS+= af_atalk.c
25SRCS+= af_inet.c
26SRCS+= af_inetany.c
27.if (${USE_INET6} != "no")
28SRCS+= af_inet6.c
29.endif
30SRCS+= af_iso.c
31SRCS+= carp.c
32
33SRCS+= agr.c
34SRCS+= ieee80211.c
35SRCS+= tunnel.c
36SRCS+= vlan.c
37SRCS+= parse.c
38SRCS+= env.c
39SRCS+= util.c
40
41.include <bsd.prog.mk>
42