diff options
Diffstat (limited to 'include/makeinclude/component_check.GNU')
-rw-r--r-- | include/makeinclude/component_check.GNU | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/include/makeinclude/component_check.GNU b/include/makeinclude/component_check.GNU index e1c8e4cc630..105a72d0b39 100644 --- a/include/makeinclude/component_check.GNU +++ b/include/makeinclude/component_check.GNU @@ -4,13 +4,6 @@ # $Id$ #---------------------------------------------------------------------------- -# Only include once. -ifndef COMPONENT_CHECK_GNU -COMPONENT_CHECK_GNU = 1 - -# Compile by default -COMPILE_COMPONENT = 1 - # Load all components. ALL_COMPONENTS := $(ACE_MAKE_OPTIONS) ALL_COMPONENTS += $(shell sh $(ACE_ROOT)/bin/ace_components --ace) @@ -21,29 +14,3 @@ ALL_COMPONENTS += $(shell sh $(ACE_ROOT)/bin/ace_components --pace) # Filter out all the components that are currently available from the # list of requirements. MISSING_COMPONENTS := $(filter-out $(ALL_COMPONENTS), $(REQUIRED_COMPONENTS)) - -# If anything is left, we're missing requirements, so don't compile it. -ifneq ($(MISSING_COMPONENTS),) - COMPILE_COMPONENT = 0 -endif - -# Now set the targets, if not already set. -ifeq ($(COMPILE_COMPONENT),1) - ifneq ($(CLEANUP_BIN),) - ifeq ($(BIN),) - BIN = $(CLEANUP_BIN) - endif - endif - ifneq ($(CLEANUP_LIB),) - ifeq ($(LIB),) - LIB = $(CLEANUP_LIB) - endif - endif - ifneq ($(CLEANUP_SHLIB),) - ifeq ($(SHLIB),) - SHLIB = $(CLEANUP_SHLIB) - endif - endif -endif - -endif # COMPONENT_CHECK_GNU |