Home | History | Annotate | Line # | Download | only in x_ifconfig
Makefile revision 1.11
      1  1.11    matt # $NetBSD: Makefile,v 1.11 2000/05/18 00:43:07 matt 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.11    matt COPTS+= -Os
     13   1.1     gwr 
     14   1.1     gwr all: ${PROG}
     15   1.1     gwr 
     16   1.1     gwr .include <bsd.prog.mk>
     17   1.3     gwr 
     18   1.3     gwr .PATH:  ${SRCDIR}
     19