summaryrefslogtreecommitdiff
path: root/lib/librmt/Makefile
blob: 9addd02b0277988d5e5f673096ae4513b82fb175 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#	$NetBSD: Makefile,v 1.9 2007/05/28 12:06:21 tls Exp $

USE_FORT?= yes	# network protocol library

NOPIC=		# defined
NOPROFILE=	# defined

LIB=		rmt
SRCS=		rmtlib.c
MAN=		rmtops.3

.if defined(__MINIX)
# rmtlib.c:451:50: error: format specifies type 'size_t' (aka 'unsigned long') \
# but the argument has type 'size_t' (aka 'unsigned int') [-Werror,-Wformat]
WARNS=0
CFLAGS+=-Wno-format
.endif

.if !defined(__MINIX)
CPPFLAGS+=	-D_REENTRANT
.endif # !defined(__MINIX)

.include <bsd.lib.mk>