Home | History | Annotate | Line # | Download | only in x_ifconfig
Makefile revision 1.25.2.1
      1  1.25.2.1  wrstuden # $NetBSD: Makefile,v 1.25.2.1 2008/06/23 04:29:01 wrstuden Exp $
      2       1.1       gwr # Build a smaller ifconfig (i.e. for boot media)
      3       1.1       gwr 
      4      1.16        tv SRCDIR=		${.CURDIR}/../../../sbin/ifconfig
      5       1.1       gwr 
      6      1.16        tv PROG=		ifconfig
      7      1.16        tv NOMAN=		# defined
      8      1.16        tv 
      9      1.21     lukem .include <bsd.own.mk>
     10      1.21     lukem 
     11      1.22      yamt CPPFLAGS+=	-I${NETBSDSRCDIR}/sys/
     12      1.22      yamt 
     13      1.16        tv CPPFLAGS+=	-DINET_ONLY -I${SRCDIR}
     14      1.21     lukem .if defined(SMALLPROG_INET6) && (${USE_INET6} != "no")
     15      1.16        tv CPPFLAGS+=	-DINET6
     16      1.14    martin .endif
     17      1.19  christos 
     18      1.19  christos DPADD+=${LIBUTIL}
     19      1.19  christos LDADD+=-lutil
     20       1.1       gwr 
     21  1.25.2.1  wrstuden DPADD+=${LIBPROP}
     22  1.25.2.1  wrstuden LDADD+=-lprop
     23  1.25.2.1  wrstuden 
     24      1.22      yamt SRCS= ifconfig.c 
     25      1.23      yamt 
     26      1.23      yamt SRCS+= af_atalk.c
     27      1.23      yamt SRCS+= af_inet.c
     28      1.25    dyoung SRCS+= af_inetany.c
     29      1.23      yamt .if defined(SMALLPROG_INET6) && (${USE_INET6} != "no")
     30      1.23      yamt SRCS+= af_inet6.c
     31      1.23      yamt .endif
     32  1.25.2.1  wrstuden SRCS+= af_link.c
     33      1.23      yamt SRCS+= af_iso.c
     34      1.23      yamt 
     35      1.22      yamt SRCS+= agr.c
     36      1.23      yamt SRCS+= ieee80211.c
     37      1.25    dyoung SRCS+= env.c
     38      1.25    dyoung SRCS+= parse.c
     39      1.25    dyoung SRCS+= util.c
     40      1.22      yamt SRCS+= tunnel.c
     41      1.22      yamt SRCS+= vlan.c
     42      1.22      yamt 
     43       1.1       gwr .include <bsd.prog.mk>
     44       1.3       gwr 
     45      1.16        tv .PATH:		${SRCDIR}
     46