diff options
Diffstat (limited to 'usr.sbin/trpt/Makefile')
-rw-r--r-- | usr.sbin/trpt/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/usr.sbin/trpt/Makefile b/usr.sbin/trpt/Makefile index cf1680b..5c62ce0 100644 --- a/usr.sbin/trpt/Makefile +++ b/usr.sbin/trpt/Makefile @@ -1,12 +1,17 @@ # @(#)Makefile 8.1 (Berkeley) 6/6/93 # $FreeBSD$ +.include <bsd.own.mk> + PROG= trpt MAN= trpt.8 BINGRP= kmem BINMODE= 2555 WARNS?= 4 + +.if ${MK_INET6_SUPPORT} != "no" CFLAGS+= -DINET6 +.endif .include <bsd.prog.mk> |