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