mirror of
https://github.com/opnsense/src.git
synced 2026-02-20 00:11:07 -05:00
std::auto_ptr in a whole bunch of individual Makefiles, make the warning globally non-fatal instead. This is similar to what was done to many more non-fatal warnings from newer gcc versions.
21 lines
285 B
Makefile
21 lines
285 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
|
|
|
|
.include <bsd.lib.mk>
|