blob: 97a4ac4a5605f863791f77ac1d89471a445d5f91 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# -*- Makefile -*-
#----------------------------------------------------------------------------
# $Id$
#----------------------------------------------------------------------------
# Load all components.
ALL_COMPONENTS := $(ACE_MAKE_OPTIONS)
ALL_COMPONENTS += $(shell sh $(ACE_ROOT)/bin/ace_components --ace)
ALL_COMPONENTS += $(shell sh $(ACE_ROOT)/bin/ace_components --tao)
ALL_COMPONENTS += $(shell sh $(ACE_ROOT)/bin/ace_components --orbsvcs)
# Filter out all the components that are currently available from the
# list of requirements.
MISSING_COMPONENTS := $(filter-out $(ALL_COMPONENTS), $(REQUIRED_COMPONENTS))
|