1 # $NetBSD: Makefile,v 1.14 2002/06/18 02:02:22 itojun Exp $ 2 # @(#)Makefile 8.1 (Berkeley) 6/5/93 3 4 SRCDIR= ${.CURDIR}/../../../sbin/route 5 6 PROG= route 7 NOMAN= # defined 8 9 SRCS= route.c show.c keywords.c 10 11 CPPFLAGS+= -DSMALL -I${SRCDIR} 12 .if (${MACHINE} == "i386" || ${MACHINE} == "hpcmips" || ${MACHINE} == "x68k" || ${MACHINE} == "macppc") 13 CPPFLAGS+= -DINET6 14 .endif 15 16 .include <bsd.prog.mk> 17 18 BINOWN= root 19 BINMODE= 4555 20 .PATH: ${SRCDIR} 21