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