Home | History | Annotate | Line # | Download | only in x_ifconfig
Makefile revision 1.10
      1 # $NetBSD: Makefile,v 1.10 2000/05/04 03:27:10 itojun Exp $
      2 # Build a smaller ifconfig (i.e. for boot media)
      3 
      4 PROG=	ifconfig
      5 MKMAN=	no
      6 
      7 SRCDIR= ${.CURDIR}/../../../sbin/ifconfig
      8 CPPFLAGS+= -DINET_ONLY -I${SRCDIR}
      9 .if (${MACHINE_ARCH} == "i386") || (${MACHINE_ARCH} == "hpcmips")
     10 CPPFLAGS+= -DINET6
     11 .endif
     12 
     13 all: ${PROG}
     14 
     15 .include <bsd.prog.mk>
     16 
     17 .PATH:  ${SRCDIR}
     18