]> CyberLeo.Net >> Repos - FreeBSD/releng/8.1.git/blob - sbin/devd/Makefile
Copy stable/8 to releng/8.1 in preparation for 8.1-RC1.
[FreeBSD/releng/8.1.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=  0
8 #WARNS?=        4
9
10 NO_SHARED?=YES
11
12 DPADD=  ${LIBL} ${LIBUTIL}
13 LDADD=  -ll -lutil
14
15 YFLAGS+=-v
16 CFLAGS+=-I. -I${.CURDIR}
17
18 CLEANFILES= y.output
19
20 .include <bsd.prog.mk>