]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - sbin/devd/Makefile
Copy head (r256279) to stable/10 as part of the 10.0-RELEASE cycle.
[FreeBSD/stable/10.git] / sbin / devd / Makefile
1 # $FreeBSD$
2
3 PROG_CXX=devd
4 SRCS=   devd.cc token.l parse.y y.tab.h
5 MAN=    devd.8 devd.conf.5
6
7 WARNS?= 3
8
9 NO_SHARED?=YES
10
11 DPADD=  ${LIBL} ${LIBUTIL}
12 LDADD=  -ll -lutil
13
14 YFLAGS+=-v
15 CFLAGS+=-I. -I${.CURDIR}
16
17 CLEANFILES= y.output
18
19 .include <bsd.prog.mk>