diff options
author | Robert Watson <rwatson@FreeBSD.org> | 2007-12-26 09:38:22 +0000 |
---|---|---|
committer | Robert Watson <rwatson@FreeBSD.org> | 2007-12-26 09:38:22 +0000 |
commit | a1f25b0daad82bf9c13324bdc2fb28c6392f6431 (patch) | |
tree | 71816d3f1c455d3d295ee99647ac62144bb65b12 /sbin/ddb/Makefile | |
parent | c9b0cc3b9623c30583400b137b82ec92483435ad (diff) | |
download | src-a1f25b0daad82bf9c13324bdc2fb28c6392f6431.tar.gz src-a1f25b0daad82bf9c13324bdc2fb28c6392f6431.zip |
Add command-line tool ddb(8), which allows DDB(4) scripts to be
managed from userspace. It is largely a wrapper for sysctl()
calls, but because the sysctls for adding and removing scripts
are awkward to use directly, this provides an easier-to-use
interface.
MFC after: 3 months
Notes
Notes:
svn path=/head/; revision=174915
Diffstat (limited to 'sbin/ddb/Makefile')
-rw-r--r-- | sbin/ddb/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sbin/ddb/Makefile b/sbin/ddb/Makefile new file mode 100644 index 000000000000..1ae724b55ee3 --- /dev/null +++ b/sbin/ddb/Makefile @@ -0,0 +1,8 @@ +# $FreeBSD$ + +PROG= ddb +SRCS= ddb.c ddb_script.c +MAN= ddb.8 +WARNS= 3 + +.include <bsd.prog.mk> |