a991d883c1
frameworks, and components without configure scripts instead of hard-coded shell variables (for projects and frameworks) and shell variable building (for components). * Add 3rd category of component configuration (in addition to configure scripts and no-configured components): configure.m4 components. These components can only be built as part of OMPI (like no-configure), but can provide an m4 file that is run as part of the main configure script. These macros can set whether the component should be built, along with just about any other configuration wanted. More care must be taken compared to configure components, as doing things like setting variables or calling AC_MSG_ERROR now affects the top-level configure script (so calling AC_MSG_ERROR if your component can't configure probably isn't what you want) * Added support to autogen.sh for the configure.m4-style components, as well as building up the m4_define lists ompi_mca.m4 now expects * Updated a number of macros to be more config.cache friendly (both so that config.cache can be used and so the test can be quickly run multiple times in the same configrue script): - ompi_config_asm - c_weak_symbols - c_get_alignment * Added new macros to be shared when configuring components: - ompi_objc.m4 (this actually provides AC_PROG_OBJC - don't ask...) - ompi_check_xgrid - ompi_check_tm - ompi_check_bproc * Updated a number of components to use configure.m4 instead of configure.stub - btl portals - io romio - tm ras and pls - bjs, lsf_bproc ras and bproc_seed pls - xgrid ras and pls - null iof (used by tm) This commit was SVN r6412.
53 строки
1.8 KiB
Makefile
53 строки
1.8 KiB
Makefile
#
|
|
# Copyright (c) 2004-2005 The Trustees of Indiana University.
|
|
# All rights reserved.
|
|
# Copyright (c) 2004-2005 The Trustees of the University of Tennessee.
|
|
# All rights reserved.
|
|
# Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
# University of Stuttgart. All rights reserved.
|
|
# Copyright (c) 2004-2005 The Regents of the University of California.
|
|
# All rights reserved.
|
|
# $COPYRIGHT$
|
|
#
|
|
# Additional copyrights may follow
|
|
#
|
|
# $HEADER$
|
|
#
|
|
|
|
include $(top_srcdir)/config/Makefile.options
|
|
|
|
SUBDIRS = \
|
|
include \
|
|
class \
|
|
dps \
|
|
mca \
|
|
runtime \
|
|
util \
|
|
. \
|
|
dynamic-mca \
|
|
tools
|
|
|
|
# Build the main ORTE library
|
|
|
|
lib_LTLIBRARIES = liborte.la
|
|
liborte_la_SOURCES =
|
|
liborte_la_LIBADD = \
|
|
class/libclass.la \
|
|
dps/libdps.la \
|
|
mca/errmgr/base/libmca_errmgr_base.la \
|
|
mca/gpr/base/libmca_gpr_base.la $(MCA_gpr_STATIC_LTLIBS) \
|
|
mca/iof/base/libmca_iof_base.la $(MCA_iof_STATIC_LTLIBS) \
|
|
mca/ns/base/libmca_ns_base.la $(MCA_ns_STATIC_LTLIBS) \
|
|
mca/oob/base/libmca_oob_base.la $(MCA_oob_STATIC_LTLIBS) \
|
|
mca/pls/base/libmca_pls_base.la $(MCA_pls_STATIC_LTLIBS) \
|
|
mca/ras/base/libmca_ras_base.la $(MCA_ras_STATIC_LTLIBS) \
|
|
mca/rds/base/libmca_rds_base.la $(MCA_rds_STATIC_LTLIBS) \
|
|
mca/rmaps/base/libmca_rmaps_base.la $(MCA_rmaps_STATIC_LTLIBS) \
|
|
mca/rmgr/base/libmca_orte_rmgr_base.la $(MCA_rmgr_STATIC_LTLIBS) \
|
|
mca/rml/base/libmca_rml_base.la $(MCA_rml_STATIC_LTLIBS) \
|
|
mca/schema/base/libmca_schema_base.la $(MCA_schema_STATIC_LTLIBS) \
|
|
mca/soh/base/libmca_soh_base.la $(MCA_soh_STATIC_LTLIBS) \
|
|
runtime/libruntime.la \
|
|
util/liborteutil.la
|
|
liborte_la_DEPENDENCIES = $(liborte_la_LIBADD)
|