freebsd-dev/usr.sbin/lsdev/Makefile
Garrett Wollman 0ed1ac8d35 lsdev(8), a user-land utility to query the device configuration database
managed by kern_devconf.c.  A useful feature is that the following
script generates almost well-formed config-file lines for all ISA devices
in the system:

lsdev -t isa | awk '{ print "device $0" }'
lsdev -t disk | awk '{ print "disk $0" }'
1994-10-17 23:26:10 +00:00

9 lines
117 B
Makefile

# $Id$
PROG= lsdev
MAN8= lsdev.8
SRCS= lsdev.c ${MACHINE}.c
CFLAGS+= -I${.CURDIR}/../../sys
.include <bsd.prog.mk>