mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-28 19:26:16 +00:00
* tools/help.mk: Make the install target depend on all the files to be installed. 2002-06-16 David Welch <[email protected]> * ntoskrnl/ps/thread.c (NtCallbackReturn): Set TSS.Esp0 to the top of the old stack. * ntoskrnl/ps/thread.c (NtW32Call): Set TSS.Esp0 to the top of the new stack. Free the callback stack correctly. Don't copy portion of the trap frame that doesn't exist in non-v86-mode interrupts. * ntoskrnl/ps/thread.c (PsFreeCallbackStack): New function to free a stack allocated with PsAllocateCallbackStack. 2002-06-16 David Welch <[email protected]> * drivers/dd/null/makefile: Commented out local LDFLAGS as these cause bad relocations in the stripped image. 2002-06-16 David Welch <[email protected]> * config: Corrected spelling error. svn path=/trunk/; revision=3107
27 lines
380 B
Plaintext
27 lines
380 B
Plaintext
#
|
|
# Architecture to build for
|
|
#
|
|
# Specify one of: i386
|
|
# Possible values in the future: alpha,i386,m68k,mips,powerpc
|
|
ARCH := i386
|
|
|
|
#
|
|
# Whether to compile in the kernel debugger
|
|
#
|
|
KDBG := 0
|
|
|
|
#
|
|
# Whether to compile for debugging
|
|
#
|
|
DBG := 0
|
|
|
|
#
|
|
# Whether to compile a multiprocessor or single processor version
|
|
#
|
|
MP := 0
|
|
|
|
#
|
|
# Whether to compile for ACPI compliant systems
|
|
#
|
|
ACPI := 0
|