123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- ################################################################################
- #
- # Copyright (c) 2012 Minoca Corp.
- #
- # This file is licensed under the terms of the GNU General Public License
- # version 3. Alternative licensing terms are available. Contact
- # info@minocacorp.com for details. See the LICENSE file at the root of this
- # project for complete licensing information.
- #
- # Binary Name:
- #
- # Kernel Debugger
- #
- # Abstract:
- #
- # This library contains the support code necessary to enable debugging
- # of a running kernel. This library is included in all versions of the
- # operating system.
- #
- # Author:
- #
- # Evan Green 10-Aug-2012
- #
- # Environment:
- #
- # Kernel
- #
- ################################################################################
- BINARY = kd.a
- BINARYTYPE = library
- OBJS = kdebug.o \
- ARMV7_OBJS = armv7/kdarch.o \
- armv7/kdatomic.o \
- armv7/kdsup.o \
- armv7/kdsupc.o \
- ARMV6_OBJS = $(ARMV7_OBJS)
- X86_OBJS = x86/kdarch.o \
- x86/kdsup.o \
- EXTRA_SRC_DIRS = x86 armv7 armv6
- DIRS = boot kdusb
- include $(SRCROOT)/os/minoca.mk
|