NetBSD/distrib/utils/x_route/Makefile
itojun 1f8a9e6165 supply IPv6-ready route(8) for i386 and hpcmips
(those who has IPv6-ready sysinst already)
2000-05-04 03:30:57 +00:00

22 lines
398 B
Makefile

# $NetBSD: Makefile,v 1.7 2000/05/04 03:30:57 itojun Exp $
# @(#)Makefile 8.1 (Berkeley) 6/5/93
PROG= route
MKMAN= no
SRCS= route.c show.c keywords.c
SRCDIR= ${.CURDIR}/../../../sbin/route
CPPFLAGS+= -DSMALL -I${SRCDIR}
.if (${MACHINE_ARCH} == "i386") || (${MACHINE_ARCH} == "hpcmips")
CPPFLAGS+= -DINET6
.endif
BINOWN= root
BINMODE=4555
all: ${PROG}
.include <bsd.prog.mk>
.PATH: ${SRCDIR}