mirror of
https://github.com/reactos/reactos.git
synced 2026-09-15 14:18:59 +08:00
This system allows the kernel debugger to be scripted with the new js command. Functions for reading and writing memory, as well as reading the module list, the registry, and the trap frame registers are provided. A simple mechanism is provided for reading javascript initialization from the registry so that the user may provide custom functions for use during debugging sessions. I have already used it to find a bug in kdb itself; as well as to list sections in modules and perform various other tedious tasks often required while debugging linked lists, etc. This is a static library that will be built when KDBG=1, and linked with ntoskrnl. svn path=/trunk/; revision=7554
31 lines
1.0 KiB
Makefile
31 lines
1.0 KiB
Makefile
#
|
|
# Automakefile for the projects sub-directory.
|
|
# Copyright (c) 1998 New Generation Software (NGS) Oy
|
|
#
|
|
# Author: Markku Rossi <mtr@ngs.fi>
|
|
#
|
|
|
|
#
|
|
# This library is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU Library General Public
|
|
# License as published by the Free Software Foundation; either
|
|
# version 2 of the License, or (at your option) any later version.
|
|
#
|
|
# This library is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
# Library General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Library General Public
|
|
# License along with this library; if not, write to the Free
|
|
# Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
|
|
# MA 02111-1307, USA
|
|
#
|
|
|
|
dist-hook:
|
|
mkdir $(distdir)/binfmt_js
|
|
cp -p $(srcdir)/binfmt_js/Makefile \
|
|
$(srcdir)/binfmt_js/README \
|
|
$(srcdir)/binfmt_js/binfmt_js.c \
|
|
$(distdir)/binfmt_js
|