]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - sbin/devd/Makefile
MFC r368207,368607:
[FreeBSD/stable/10.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>