1# $FreeBSD: stable/11/lib/libdevdctl/Makefile 360658 2020-05-05 12:59:04Z dim $
2
3LIB_CXX=	devdctl
4INCS=	consumer.h		\
5	event.h			\
6	event_factory.h		\
7	exception.h		\
8	guid.h
9SRCS=	consumer.cc		\
10	event.cc		\
11	event_factory.cc	\
12	exception.cc		\
13	guid.cc
14
15INCSDIR= ${INCLUDEDIR}/devdctl
16
17WARNS?=	3
18PRIVATELIB=	true
19SHLIB_MAJOR=	0
20
21# Silence warnings about usage of deprecated std::auto_ptr, and various
22# deprecated function objects from <functional>
23CXXWARNFLAGS+=	-Wno-deprecated-declarations
24
25.include <bsd.lib.mk>
26