Home | History | Annotate | Line # | Download | only in ifconfig
Makefile revision 1.27
      1 #	$NetBSD: Makefile,v 1.27 2005/03/20 02:44:25 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 
     24 SRCS+= af_atalk.c
     25 SRCS+= af_inet.c
     26 .if (${USE_INET6} != "no")
     27 SRCS+= af_inet6.c
     28 .endif
     29 SRCS+= af_iso.c
     30 SRCS+= af_ns.c
     31 
     32 SRCS+= agr.c
     33 SRCS+= ieee80211.c
     34 SRCS+= tunnel.c
     35 SRCS+= vlan.c
     36 
     37 .include <bsd.prog.mk>
     38