mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-22 21:31:05 +01:00
d0b2dbfa0e
Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
25 lines
408 B
Makefile
25 lines
408 B
Makefile
|
|
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>
|