Home | History | Annotate | Line # | Download | only in ifconfig
Makefile revision 1.18
      1 #	$NetBSD: Makefile,v 1.18 2005/03/18 11:11:51 yamt 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 
     25 .include <bsd.prog.mk>
     26