xref: /minix/lib/librmt/Makefile (revision e3b78ef1)
1#	$NetBSD: Makefile,v 1.9 2007/05/28 12:06:21 tls Exp $
2
3USE_FORT?= yes	# network protocol library
4
5NOPIC=		# defined
6NOPROFILE=	# defined
7
8LIB=		rmt
9SRCS=		rmtlib.c
10MAN=		rmtops.3
11
12.if defined(__MINIX)
13# rmtlib.c:451:50: error: format specifies type 'size_t' (aka 'unsigned long') \
14# but the argument has type 'size_t' (aka 'unsigned int') [-Werror,-Wformat]
15WARNS=0
16CFLAGS+=-Wno-format
17.endif
18
19.if !defined(__MINIX)
20CPPFLAGS+=	-D_REENTRANT
21.endif # !defined(__MINIX)
22
23.include <bsd.lib.mk>
24