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