opnsense-src/lib/libdevdctl/Makefile
Dimitry Andric e008cf3eb5 Silence gcc warnings in libdevdctl about deprecated std::auto_ptr, and
various function objects from <functional>.
2019-09-09 19:56:20 +00:00

25 lines
433 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 gcc warnings about deprecated std::auto_ptr, and various function
# objects from <functional>.
CWARNFLAGS+= -Wno-deprecated-declarations
.include <bsd.lib.mk>