]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sbin/devd/Makefile
Merge branch 'releng/11.3' into releng-CDN/11.3
[FreeBSD/FreeBSD.git] / sbin / devd / Makefile
1 # $FreeBSD$
2
3 .include <src.opts.mk>
4
5 PACKAGE=runtime
6 PROG_CXX=devd
7 SRCS=   devd.cc token.l parse.y y.tab.h
8 MAN=    devd.8 devd.conf.5
9
10 WARNS?= 3
11
12 NO_SHARED?=YES
13
14 LIBADD= l util
15
16 YFLAGS+=-v
17 CFLAGS+=-I. -I${.CURDIR}
18
19 CLEANFILES= y.output
20
21 .if ${MK_TESTS} != "no"
22 SUBDIR+=    tests
23 .endif
24
25 .include <bsd.prog.mk>