fedda9c678
from clang about possible keywords being treated as identifiers for the remainder of the translation unit (a.k.a. -Wkeyword-compat), when using libstdc++ in combination with -Wsystem-headers. This will not only fix devd, but any C++ program using libstdc++. MFC after: 3 days X-MFC-With: r263694
20 lines
244 B
Makefile
20 lines
244 B
Makefile
# $FreeBSD$
|
|
|
|
PROG_CXX=devd
|
|
SRCS= devd.cc token.l parse.y y.tab.h
|
|
MAN= devd.8 devd.conf.5
|
|
|
|
WARNS?= 3
|
|
|
|
NO_SHARED?=YES
|
|
|
|
DPADD= ${LIBL} ${LIBUTIL}
|
|
LDADD= -ll -lutil
|
|
|
|
YFLAGS+=-v
|
|
CFLAGS+=-I. -I${.CURDIR}
|
|
|
|
CLEANFILES= y.output
|
|
|
|
.include <bsd.prog.mk>
|