mirror of
https://github.com/reactos/reactos.git
synced 2024-12-29 02:25:17 +00:00
3f69ca4cc4
- Created helper makefile for all targets - Made most makefiles simpler by using the helper makefile - Moved build tools into ./tools Updated installation instructions svn path=/trunk/; revision=2185
26 lines
381 B
Text
26 lines
381 B
Text
#
|
|
# Architecture to build for
|
|
#
|
|
# Specify one of: i386
|
|
# Possibble 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 := 1
|
|
|
|
#
|
|
# Whether to compile a multiprocessor or single processor version
|
|
#
|
|
MP := 0
|
|
|
|
#
|
|
# Whether to compile for ACPI compliant systems
|
|
#
|
|
ACPI := 0
|