e530e0446b
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
17 lines
193 B
Makefile
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>
|