freebsd-dev/sbin/devd/Makefile
Warner Losh e530e0446b devd. A daemon that hooks into the kernel's /dev/devctl to produce
arbitrary commands when devices come and go in the device tree (which is
different than the /dev directory).

This is an initial version.  Much of the planned power isn't here.
Instead of doing the full matching, we always run /etc/devd-generic.
/etc/devd.generic will go away at some point, I think.

I'm committing it in this early state so I can start getting feedback
from early adapters.

Approved by: re
2002-10-20 22:15:17 +00:00

17 lines
193 B
Makefile

# $FreeBSD$
PROG= devd
SRCS= devd.c token.l parse.y y.tab.h
MAN= devd.8
WARNS?= 5
DPADD= ${LIBL}
LDADD= -ll
YFLAGS+=-v
CFLAGS+=-I. -I${.CURDIR}
CLEANFILES= y.output
.include <bsd.prog.mk>