xref: /netbsd/usr.sbin/trpt/Makefile (revision 6550d01e)
1#	@(#)Makefile	8.1 (Berkeley) 6/6/93
2#	$NetBSD: Makefile,v 1.10 2007/05/28 12:06:42 tls Exp $
3
4.include <bsd.own.mk>
5
6USE_FORT?= yes	# network client, effectively
7
8PROG=	trpt
9MAN=	trpt.8
10
11DPADD=	${LIBKVM}
12LDADD=	-lkvm
13
14.if (${USE_INET6} != "no")
15CPPFLAGS+=	-DINET6
16.endif
17
18.include <bsd.prog.mk>
19