Home | History | Annotate | Line # | Download | only in route
Makefile revision 1.27
      1 #	$NetBSD: Makefile,v 1.27 2015/04/22 03:07:55 ozaki-r Exp $
      2 #	@(#)Makefile	8.1 (Berkeley) 6/5/93
      3 
      4 .include <bsd.own.mk>
      5 
      6 RUMPPRG=route
      7 MAN=	route.8
      8 SRCS=	route.c show.c keywords.c rtutil.c
      9 
     10 .PATH:		${.CURDIR}/../../lib/libc/net
     11 RUMPSRCS= if_indextoname.c getifaddrs.c
     12 .if (${MKRUMP} != "no")
     13 CPPFLAGS+= -DRUMP_ACTION
     14 .endif
     15 
     16 .if (${USE_INET6} != "no")
     17 CPPFLAGS+=-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