]> CyberLeo.Net >> Repos - FreeBSD/stable/9.git/blob - sbin/devd/Makefile
Copy head to stable/9 as part of 9.0-RELEASE release cycle.
[FreeBSD/stable/9.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>