NetBSD/lib/librumpclient/Makefile
mrg de11d87641 introduce some common variables for use in GCC warning disables:
GCC_NO_FORMAT_TRUNCATION    -Wno-format-truncation (GCC 7/8)
GCC_NO_STRINGOP_TRUNCATION  -Wno-stringop-truncation (GCC 8)
GCC_NO_STRINGOP_OVERFLOW    -Wno-stringop-overflow (GCC 8)
GCC_NO_CAST_FUNCTION_TYPE   -Wno-cast-function-type (GCC 8)

use these to turn off warnings for most GCC-8 complaints.  many
of these are false positives, most of the real bugs are already
commited, or are yet to come.


we plan to introduce versions of (some?) of these that use the
"-Wno-error=" form, which still displays the warnings but does
not make it an error, and all of the above will be re-considered
as either being "fix me" (warning still displayed) or "warning
is wrong."
2019-10-13 07:28:04 +00:00

39 lines
741 B
Makefile

# $NetBSD: Makefile,v 1.15 2019/10/13 07:28:11 mrg Exp $
#
.PATH: ${.CURDIR}/../../sys/rump/librump/rumpkern
LIB= rumpclient
USE_SHLIBDIR= yes
MAN= rumpclient.3
.include <bsd.own.mk>
INCS= rumpclient.h
INCSDIR= /usr/include/rump
.for lib in ${RUMPCLIENT_EXTERNAL_DPLIBS}
LIBDO.${lib}= _external
LIBDPLIBS+= ${lib} lib
.endfor
CPPFLAGS+= -DRUMP_CLIENT
CPPFLAGS+= -I${.OBJDIR} -I${.CURDIR}
CPPFLAGS+= -I${.CURDIR}/../librumpuser
SRCS= rumpclient.c
SRCS+= rump_syscalls.c
CLEANFILES+= srcsys
COPTS.rump_syscalls.c+= -fno-strict-aliasing
.if !make(obj) && !make(clean) && !make(cleandir)
.BEGIN:
@rm -f srcsys
@ln -s ${NETBSDSRCDIR}/sys/sys srcsys
.endif
COPTS.rumpclient.c+= ${GCC_NO_CAST_FUNCTION_TYPE}
.include <bsd.lib.mk>