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 4PROG= route 5MKMAN= no 6SRCS= route.c show.c keywords.c 7 8SRCDIR= ${.CURDIR}/../../../sbin/route 9CPPFLAGS+= -DSMALL -I${SRCDIR} 10.if (${MACHINE_ARCH} == "i386") || (${MACHINE_ARCH} == "hpcmips") 11CPPFLAGS+= -DINET6 12.endif 13 14BINOWN= root 15BINMODE=4555 16 17all: ${PROG} 18 19.include <bsd.prog.mk> 20 21.PATH: ${SRCDIR} 22