minix/commands/devmand/Makefile
Kees Jongenburger ade7dc8ded Upgrade libddekit and introduce devmand.
Devmand (Device manager daemon) is the daemon that will
dynamically manage services based on events received from
the system.
2012-06-18 09:23:42 +02:00

16 lines
237 B
Makefile

PROG = devmand
SRCS = main.c lex.yy.c y.tab.c
lex.yy.c: usb_scan.l y.tab.h
${LEX} usb_scan.l
y.tab.c y.tab.h: usb.y
${YACC} -d usb.y
CLEANFILES = y.tab.c y.tab.h *.d lex.yy.c lex.yy.o main.o y.tab.o
MAN =
.include <bsd.prog.mk>