freebsd-dev/lib/libdevdctl/Makefile
Ed Maste 52f2b03877 libdevdctl: update deprecated deprecation warning comment
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
2022-12-04 10:17:37 -05:00

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>