Makefile revision 1.28
1#	$NetBSD: Makefile,v 1.28 2015/05/15 06:58:59 ozaki-r Exp $
2#	@(#)Makefile	8.1 (Berkeley) 6/5/93
3
4.include <bsd.own.mk>
5
6RUMPPRG=route
7MAN=	route.8
8SRCS=	route.c show.c keywords.c rtutil.c
9
10.PATH:		${.CURDIR}/../../lib/libc/net
11RUMPSRCS= if_indextoname.c getifaddrs.c getnameinfo.c
12.if (${MKRUMP} != "no")
13CPPFLAGS+= -DRUMP_ACTION
14.endif
15
16.if (${USE_INET6} != "no")
17CPPFLAGS+=-DINET6
18.endif
19
20# The Makefile over in ../../distrib/utils/x_route
21# would like keywords.[ch] to always exist here, so
22# they are now checked in as sources.
23#
24# CPPFLAGS+=-I.
25# CLEANFILES+= keywords.c keywords.h
26# keywords.c keywords.h : keywords.sh
27# 	${HOST_SH} keywords.sh
28
29.include <bsd.prog.mk>
30