minix/lib/librmt/Makefile

24 lines
493 B
Makefile
Raw Normal View History

# $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>