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