NetBSD/sbin/route/Makefile

24 lines
514 B
Makefile
Raw Normal View History

2006-08-26 19:26:02 +04:00
# $NetBSD: Makefile,v 1.23 2006/08/26 15:26:02 matt Exp $
# @(#)Makefile 8.1 (Berkeley) 6/5/93
1993-03-21 12:45:37 +03:00
.include <bsd.own.mk>
1993-03-21 12:45:37 +03:00
PROG= route
1994-12-22 13:44:04 +03:00
MAN= route.8
2006-08-26 19:26:02 +04:00
SRCS= route.c show.c keywords.c
1993-03-21 12:45:37 +03:00
.if (${USE_INET6} != "no")
1999-07-03 10:26:25 +04:00
CPPFLAGS+=-DINET6
.endif
# The Makefile over in ../../distrib/utils/x_route
# would like keywords.[ch] to always exist here, so
# they are now checked in as sources.
#
1997-10-10 23:47:50 +04:00
# CPPFLAGS+=-I.
# CLEANFILES+= keywords.c keywords.h
# keywords.c keywords.h : keywords.sh
# ${HOST_SH} keywords.sh
1993-03-21 12:45:37 +03:00
1994-05-14 01:24:15 +04:00
.include <bsd.prog.mk>