Home | History | Annotate | Line # | Download | only in x_route
Makefile revision 1.11
      1  1.11   martin #	$NetBSD: Makefile,v 1.11 2001/08/20 12:19:46 martin Exp $
      2   1.1      gwr #	@(#)Makefile	8.1 (Berkeley) 6/5/93
      3   1.1      gwr 
      4   1.1      gwr PROG=	route
      5   1.4    lukem MKMAN=	no
      6   1.2      gwr SRCS=	route.c show.c keywords.c
      7   1.1      gwr 
      8   1.6      cgd SRCDIR= ${.CURDIR}/../../../sbin/route
      9   1.3    lukem CPPFLAGS+= -DSMALL -I${SRCDIR}
     10  1.10  minoura .if (${MACHINE} == "i386") || (${MACHINE} == "hpcmips") || (${MACHINE} == "x68k")
     11   1.7   itojun CPPFLAGS+= -DINET6
     12   1.7   itojun .endif
     13  1.11   martin .if ${MACHINE_ARCH} != "sparc64"
     14   1.8     matt COPTS+= -Os
     15  1.11   martin .endif
     16   1.9     matt LDSTATIC?=-static
     17   1.1      gwr 
     18   1.1      gwr BINOWN=	root
     19   1.1      gwr BINMODE=4555
     20   1.1      gwr 
     21   1.2      gwr all: ${PROG}
     22   1.2      gwr 
     23   1.1      gwr .include <bsd.prog.mk>
     24   1.2      gwr 
     25   1.2      gwr .PATH:  ${SRCDIR}
     26