9c871ea54c
The improvements are: - can get the kld info from core files via kvm(3); - can use kldstat(2) directly, which is a piece of cake; - can use .symbols or whatever, which allows for use by non-developers when reporting system crashes -- now asf(8) can be mentioned in the handbook at last; - speed (no more double fts(3) per loaded module); - various bugs fixed.
13 lines
143 B
Makefile
13 lines
143 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= asf
|
|
SRCS= asf.c asf_kld.c asf_kvm.c asf_prog.c
|
|
MAN= asf.8
|
|
|
|
DPADD= ${LIBKVM}
|
|
LDADD= -lkvm
|
|
|
|
WARNS?= 4
|
|
|
|
.include <bsd.prog.mk>
|