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