1#	@(#)Makefile	8.1 (Berkeley) 6/6/93
2# $FreeBSD$
3
4.include <src.opts.mk>
5
6PROG=	trpt
7MAN=	trpt.8
8BINGRP=	kmem
9BINMODE= 2555
10
11.if ${MK_INET6_SUPPORT} != "no"
12CFLAGS+= -DINET6
13.endif
14
15.include <bsd.prog.mk>
16
17# Several included system headers tickle this warning in ways that are
18# difficult to work around in this program.
19CFLAGS+= -Wno-missing-variable-declarations
20