Makefile revision 1.30
1# $NetBSD: Makefile,v 1.30 2017/10/10 19:30:06 christos 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.if (${MKRUMP} != "no") 11CPPFLAGS+= -DRUMP_ACTION 12LDADD.rump += -lrumpres 13DPADD.rump += ${LIBRUMPRES} 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