Home | History | Annotate | Line # | Download | only in ifconfig
Makefile revision 1.16
      1 #	$NetBSD: Makefile,v 1.16 2005/01/10 02:58:59 lukem Exp $
      2 #	@(#)Makefile	8.1 (Berkeley) 6/5/93
      3 
      4 .include <bsd.own.mk>
      5 
      6 PROG=	ifconfig
      7 MAN=	ifconfig.8
      8 
      9 .if (${USE_INET6} != "no")
     10 CPPFLAGS+=-DINET6
     11 .endif
     12 
     13 # KAME scope id hack
     14 CPPFLAGS+=-DKAME_SCOPEID
     15 
     16 DPADD+=${LIBUTIL}
     17 LDADD+=-lutil
     18 
     19 SRCS= ifconfig.c 
     20 
     21 .include <bsd.prog.mk>
     22