Home | History | Annotate | Line # | Download | only in x_route
Makefile revision 1.7
      1 #	$NetBSD: Makefile,v 1.7 2000/05/04 03:30:57 itojun Exp $
      2 #	@(#)Makefile	8.1 (Berkeley) 6/5/93
      3 
      4 PROG=	route
      5 MKMAN=	no
      6 SRCS=	route.c show.c keywords.c
      7 
      8 SRCDIR= ${.CURDIR}/../../../sbin/route
      9 CPPFLAGS+= -DSMALL -I${SRCDIR}
     10 .if (${MACHINE_ARCH} == "i386") || (${MACHINE_ARCH} == "hpcmips")
     11 CPPFLAGS+= -DINET6
     12 .endif
     13 
     14 BINOWN=	root
     15 BINMODE=4555
     16 
     17 all: ${PROG}
     18 
     19 .include <bsd.prog.mk>
     20 
     21 .PATH:  ${SRCDIR}
     22