2002-10-20 22:15:17 +00:00
|
|
|
# $FreeBSD$
|
|
|
|
|
2014-08-14 22:33:56 +00:00
|
|
|
.include <src.opts.mk>
|
|
|
|
|
2016-02-10 04:00:01 +00:00
|
|
|
PACKAGE=runtime
|
2002-12-07 08:04:36 +00:00
|
|
|
PROG_CXX=devd
|
|
|
|
SRCS= devd.cc token.l parse.y y.tab.h
|
2002-11-14 10:00:01 +00:00
|
|
|
MAN= devd.8 devd.conf.5
|
2007-11-19 00:19:01 +00:00
|
|
|
|
2010-02-15 14:07:40 +00:00
|
|
|
WARNS?= 3
|
2002-10-20 22:15:17 +00:00
|
|
|
|
2004-12-21 09:59:45 +00:00
|
|
|
NO_SHARED?=YES
|
2003-08-17 08:40:49 +00:00
|
|
|
|
2014-11-25 11:23:12 +00:00
|
|
|
LIBADD= l util
|
2002-10-20 22:15:17 +00:00
|
|
|
|
|
|
|
YFLAGS+=-v
|
|
|
|
CFLAGS+=-I. -I${.CURDIR}
|
|
|
|
|
|
|
|
CLEANFILES= y.output
|
|
|
|
|
2014-08-14 22:33:56 +00:00
|
|
|
.if ${MK_TESTS} != "no"
|
|
|
|
SUBDIR+= tests
|
|
|
|
.endif
|
|
|
|
|
2002-10-20 22:15:17 +00:00
|
|
|
.include <bsd.prog.mk>
|