NetBSD/usr.sbin/hdaudioctl/Makefile
sborrill f549e36e60 Add hdaudioctl(8), a tool to manipulate hdaudio(4) devices.
It offer the following subcommands:
	list - shows all child codec
	get - get a plist of the chosen codec's widget configuration
	set - forcibly reconfigure a specified codec from a plist
	graph - generate a graphviz file for the specified codec
2009-10-11 08:57:54 +00:00

12 lines
196 B
Makefile

# $NetBSD: Makefile,v 1.1 2009/10/11 08:57:54 sborrill Exp $
PROG= hdaudioctl
SRCS= hdaudioctl.c
SRCS+= graph.c
MAN= hdaudioctl.8
LDADD+= -lprop
DPADD+= ${LIBPROP}
.include <bsd.prog.mk>