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