Makefile revision 1.22
1#	$NetBSD: Makefile,v 1.22 2005/03/19 23:32:55 thorpej Exp $
2#	@(#)Makefile	8.1 (Berkeley) 6/5/93
3
4.include <bsd.own.mk>
5
6WARNS=	3
7PROG=	ifconfig
8MAN=	ifconfig.8
9
10CPPFLAGS+=	-I${NETBSDSRCDIR}/sys/
11
12.if (${USE_INET6} != "no")
13CPPFLAGS+=-DINET6
14.endif
15
16# KAME scope id hack
17CPPFLAGS+=-DKAME_SCOPEID
18
19DPADD+=${LIBUTIL}
20LDADD+=-lutil
21
22SRCS= ifconfig.c 
23
24SRCS+= af_atalk.c
25
26SRCS+= agr.c
27SRCS+= ieee80211.c
28SRCS+= tunnel.c
29SRCS+= vlan.c
30
31.include <bsd.prog.mk>
32