52f2b03877
The comment indicated -Wno-deprecated-declarations was used to avoid warnings about deprecated auto_ptr and various deprecated function objects from <functional>. libdevdctl (now) does not use auto_ptr, so don't mention it in the comment. Sponsored by: The FreeBSD Foundation
26 lines
420 B
Makefile
26 lines
420 B
Makefile
# $FreeBSD$
|
|
|
|
LIB_CXX= devdctl
|
|
INCS= consumer.h \
|
|
event.h \
|
|
event_factory.h \
|
|
exception.h \
|
|
guid.h
|
|
SRCS= consumer.cc \
|
|
event.cc \
|
|
event_factory.cc \
|
|
exception.cc \
|
|
guid.cc
|
|
|
|
INCSDIR= ${INCLUDEDIR}/devdctl
|
|
|
|
WARNS?= 3
|
|
PRIVATELIB= true
|
|
SHLIB_MAJOR= 0
|
|
|
|
# Silence warnings about usage of various deprecated function objects
|
|
# from <functional>
|
|
CXXWARNFLAGS+= -Wno-deprecated-declarations
|
|
|
|
.include <bsd.lib.mk>
|