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 ${COMPILER_TYPE} == "gcc" && ${COMPILER_VERSION} < 50000
12WARNS?=	4
13.endif
14
15.if ${MK_INET6_SUPPORT} != "no"
16CFLAGS+= -DINET6
17.endif
18
19.include <bsd.prog.mk>
20
21.if ${COMPILER_TYPE} != "gcc" || ${COMPILER_VERSION} >= 50000
22# Several included system headers tickle this warning in ways that are
23# difficult to work around in this program.
24CFLAGS+= -Wno-missing-variable-declarations
25.endif
26