mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 17:44:45 +00:00
94066e01ef
Pass an ACPI flag from FreeLdr to the kernel and replace the usage of ACPI compile time option with it. svn path=/trunk/; revision=13945
29 lines
712 B
Makefile
29 lines
712 B
Makefile
# Global configuration
|
|
|
|
#
|
|
# Include details of the OS configuration
|
|
#
|
|
include $(PATH_TO_TOP)/config
|
|
|
|
CONFIG :=
|
|
|
|
ifeq ($(DBG), 1)
|
|
CONFIG += DBG
|
|
endif
|
|
|
|
ifeq ($(KDBG), 1)
|
|
CONFIG += KDBG
|
|
endif
|
|
|
|
ifeq ($(CONFIG_SMP), 1)
|
|
CONFIG += CONFIG_SMP
|
|
endif
|
|
|
|
$(PATH_TO_TOP)/tools/mkconfig$(EXE_POSTFIX): $(PATH_TO_TOP)/tools/mkconfig.c
|
|
@$(HOST_CC) -g -o $(PATH_TO_TOP)/tools/mkconfig$(EXE_POSTFIX) $(PATH_TO_TOP)/tools/mkconfig.c
|
|
|
|
$(PATH_TO_TOP)/config: $(PATH_TO_TOP)/tools/mkconfig$(EXE_POSTFIX)
|
|
@$(PATH_TO_TOP)/tools/mkconfig$(EXE_POSTFIX) $(PATH_TO_TOP)/include/roscfg.h$(CONFIG)
|
|
|
|
$(PATH_TO_TOP)/include/roscfg.h: $(PATH_TO_TOP)/config
|
|
@$(PATH_TO_TOP)/tools/mkconfig$(EXE_POSTFIX) $(PATH_TO_TOP)/include/roscfg.h$(CONFIG)
|