21 lines
411 B
Makefile
21 lines
411 B
Makefile
# $NetBSD: Makefile,v 1.13 2001/12/12 00:05:14 tv Exp $
|
|
# @(#)Makefile 8.1 (Berkeley) 6/5/93
|
|
|
|
SRCDIR= ${.CURDIR}/../../../sbin/route
|
|
|
|
PROG= route
|
|
NOMAN= # defined
|
|
|
|
SRCS= route.c show.c keywords.c
|
|
|
|
CPPFLAGS+= -DSMALL -I${SRCDIR}
|
|
.if (${MACHINE} == "i386") || (${MACHINE} == "hpcmips") || (${MACHINE} == "x68k")
|
|
CPPFLAGS+= -DINET6
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|
|
|
|
BINOWN= root
|
|
BINMODE= 4555
|
|
.PATH: ${SRCDIR}
|