Home | History | Annotate | Line # | Download | only in ifconfig
Makefile revision 1.26
      1  1.26   thorpej #	$NetBSD: Makefile,v 1.26 2005/03/20 02:43:50 thorpej Exp $
      2   1.7       cgd #	@(#)Makefile	8.1 (Berkeley) 6/5/93
      3   1.1       cgd 
      4  1.16     lukem .include <bsd.own.mk>
      5  1.16     lukem 
      6  1.17   xtraeme WARNS=	3
      7   1.1       cgd PROG=	ifconfig
      8   1.6       cgd MAN=	ifconfig.8
      9   1.8    itojun 
     10  1.18      yamt CPPFLAGS+=	-I${NETBSDSRCDIR}/sys/
     11  1.18      yamt 
     12  1.16     lukem .if (${USE_INET6} != "no")
     13  1.10    itojun CPPFLAGS+=-DINET6
     14  1.16     lukem .endif
     15  1.11    itojun 
     16  1.11    itojun # KAME scope id hack
     17  1.11    itojun CPPFLAGS+=-DKAME_SCOPEID
     18  1.14  christos 
     19  1.14  christos DPADD+=${LIBUTIL}
     20  1.14  christos LDADD+=-lutil
     21   1.1       cgd 
     22  1.15       dsl SRCS= ifconfig.c 
     23  1.22   thorpej 
     24  1.22   thorpej SRCS+= af_atalk.c
     25  1.26   thorpej SRCS+= af_inet.c
     26  1.25   thorpej SRCS+= af_inet6.c
     27  1.24   thorpej SRCS+= af_iso.c
     28  1.23   thorpej SRCS+= af_ns.c
     29  1.22   thorpej 
     30  1.18      yamt SRCS+= agr.c
     31  1.21   thorpej SRCS+= ieee80211.c
     32  1.20   thorpej SRCS+= tunnel.c
     33  1.19   thorpej SRCS+= vlan.c
     34  1.15       dsl 
     35   1.1       cgd .include <bsd.prog.mk>
     36