]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.sbin/trpt/Makefile
Make linux_ptrace() use linux_msg() instead of printf().
[FreeBSD/FreeBSD.git] / usr.sbin / trpt / Makefile
1 #       @(#)Makefile    8.1 (Berkeley) 6/6/93
2 # $FreeBSD$
3
4 .include <src.opts.mk>
5
6 PROG=   trpt
7 MAN=    trpt.8
8 BINGRP= kmem
9 BINMODE= 2555
10
11 .if ${COMPILER_TYPE} == "gcc" && ${COMPILER_VERSION} < 50000
12 WARNS?= 4
13 .endif
14
15 .if ${MK_INET6_SUPPORT} != "no"
16 CFLAGS+= -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.
24 CFLAGS+= -Wno-missing-variable-declarations
25 .endif