]> CyberLeo.Net >> Repos - FreeBSD/releng/10.2.git/blob - sbin/devd/Makefile
- Copy stable/10@285827 to releng/10.2 in preparation for 10.2-RC1
[FreeBSD/releng/10.2.git] / sbin / devd / Makefile
1 # $FreeBSD$
2
3 .include <bsd.own.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 DPADD=  ${LIBL} ${LIBUTIL}
14 LDADD=  -ll -lutil
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>