1
1

The next in a long line of crazed build system changes from Brian. This was

originally suggested by Ralf Wildenhues, to try to speed autogen, configure,
and make (and possibly even make install).  Use automake's include directive
to drastically reduce the number of Makefile files (although the number of
Makefile.am files is the same - most are just included in a top-level
Makefile.am).  Also use an Automake SUBDIRs feature to eliminate the
dynamic-mca tree, which was no longer really needed.  This makes adding
a framework easier (since you don't have to remember the dynamic-mca
tree) and makes building faster (as make doesn't have to recurse through
the dynamic-mca tree)

This commit was SVN r7777.
Этот коммит содержится в:
Brian Barrett 2005-10-17 00:21:10 +00:00
родитель 6e3c23ec3b
Коммит 1302cb4072
111 изменённых файлов: 512 добавлений и 1470 удалений

Просмотреть файл

@ -14,8 +14,6 @@
# $HEADER$
#
SUBDIRS = config include etc contrib $(MCA_PROJECT_SUBDIRS) test
EXTRA_DIST = README INSTALL VERSION Doxyfile LICENSE

Просмотреть файл

@ -47,7 +47,7 @@ if test ! -z "$AUTOMAKE"; then
ompi_automake_search="$AUTOMAKE"
fi
ompi_automake_version="1.7"
ompi_automake_version="1.9"
ompi_autoconf_version="2.58"
ompi_libtool_version="1.5.16"

Просмотреть файл

@ -14,8 +14,6 @@
# $HEADER$
#
EXTRA_DIST = \
distscript.csh \
c_get_alignment.m4 \

Просмотреть файл

@ -259,6 +259,10 @@ AC_DEFUN([MCA_CONFIGURE_PROJECT],[
[m4_fatal([Could not find mca_$1_framework_list - rerun autogen.sh without -l])])
MCA_$1_FRAMEWORKS=
MCA_$1_FRAMEWORKS_SUBDIRS=
MCA_$1_FRAMEWORK_COMPONENT_ALL_SUBDIRS=
MCA_$1_FRAMEWORK_COMPONENT_DSO_SUBDIRS=
MCA_$1_FRAMEWORK_COMPONENT_STATIC_SUBDIRS=
MCA_$1_FRAMEWORK_LIBS=
m4_foreach(mca_framework, [mca_$1_framework_list],
@ -266,8 +270,16 @@ AC_DEFUN([MCA_CONFIGURE_PROJECT],[
[# common has to go up front
if test "mca_framework" = "common" ; then
MCA_$1_FRAMEWORKS="mca_framework $MCA_$1_FRAMEWORKS"
MCA_$1_FRAMEWORKS_SUBDIRS="[mca/]mca_framework $MCA_$1_FRAMEWORKS_SUBDIRS"
MCA_$1_FRAMEWORK_COMPONENT_ALL_SUBDIRS="[\$(MCA_]mca_framework[_ALL_SUBDIRS)] $MCA_$1_FRAMEWORK_COMPONENT_ALL_SUBDIRS"
MCA_$1_FRAMEWORK_COMPONENT_DSO_SUBDIRS="[\$(MCA_]mca_framework[_DSO_SUBDIRS)] $MCA_$1_FRAMEWORK_COMPONENT_DSO_SUBDIRS"
MCA_$1_FRAMEWORK_COMPONENT_STATIC_SUBDIRS="[\$(MCA_]mca_framework[_STATIC_SUBDIRS)] $MCA_$1_FRAMEWORK_COMPONENT_STATIC_SUBDIRS"
else
MCA_$1_FRAMEWORKS="$MCA_$1_FRAMEWORKS mca_framework"
MCA_$1_FRAMEWORKS_SUBDIRS="$MCA_$1_FRAMEWORKS_SUBDIRS [mca/]mca_framework"
MCA_$1_FRAMEWORK_COMPONENT_ALL_SUBDIRS="$MCA_$1_FRAMEWORK_COMPONENT_ALL_SUBDIRS [\$(MCA_]mca_framework[_ALL_SUBDIRS)]"
MCA_$1_FRAMEWORK_COMPONENT_DSO_SUBDIRS="$MCA_$1_FRAMEWORK_COMPONENT_DSO_SUBDIRS [\$(MCA_]mca_framework[_DSO_SUBDIRS)]"
MCA_$1_FRAMEWORK_COMPONENT_STATIC_SUBDIRS="$MCA_$1_FRAMEWORK_COMPONENT_STATIC_SUBDIRS [\$(MCA_]mca_framework[_STATIC_SUBDIRS)]"
fi
if test "mca_framework" != "common" ; then
MCA_$1_FRAMEWORK_LIBS="$MCA_$1_FRAMEWORK_LIBS [mca/]mca_framework[/base/libmca_]mca_framework[_base.la]"
@ -278,6 +290,10 @@ AC_DEFUN([MCA_CONFIGURE_PROJECT],[
[MCA_CONFIGURE_FRAMEWORK($1, mca_framework)])])])
AC_SUBST(MCA_$1_FRAMEWORKS)
AC_SUBST(MCA_$1_FRAMEWORKS_SUBDIRS)
AC_SUBST(MCA_$1_FRAMEWORK_COMPONENT_ALL_SUBDIRS)
AC_SUBST(MCA_$1_FRAMEWORK_COMPONENT_DSO_SUBDIRS)
AC_SUBST(MCA_$1_FRAMEWORK_COMPONENT_STATIC_SUBDIRS)
AC_SUBST(MCA_$1_FRAMEWORK_LIBS)
])
@ -317,9 +333,6 @@ AC_DEFUN([MCA_CONFIGURE_FRAMEWORK],[
fi
AS_MKDIR_P([$outdir])
# ensure that the dynamic-mca base directory exists
AS_MKDIR_P([$1/dynamic-mca/$2])
# remove any previously generated #include files
outfile_real=$outdir/static-components.h
outfile=$outfile_real.new
@ -380,23 +393,25 @@ AC_DEFUN([MCA_CONFIGURE_FRAMEWORK],[
[static_components], [dso_components],
[static_ltlibs])])
# reminder - the dollar sign 2 substitutions are at autogen time, so
# this will actually work in a rational way...
MCA_$2_ALL_SUBDIRS="$all_components"
MCA_$2_STATIC_SUBDIRS="$static_components"
MCA_$2_DSO_SUBDIRS="$dso_components"
MCA_$2_ALL_COMPONENTS="$all_components"
MCA_$2_STATIC_COMPONENTS="$static_components"
MCA_$2_DSO_COMPONENTS="$dso_components"
MCA_$2_STATIC_LTLIBS="$static_ltlibs"
AC_SUBST(MCA_$2_ALL_SUBDIRS)
AC_SUBST(MCA_$2_STATIC_SUBDIRS)
AC_SUBST(MCA_$2_DSO_SUBDIRS)
AC_SUBST(MCA_$2_ALL_COMPONENTS)
AC_SUBST(MCA_$2_STATIC_COMPONENTS)
AC_SUBST(MCA_$2_DSO_COMPONENTS)
AC_SUBST(MCA_$2_STATIC_LTLIBS)
OMPI_MCA_MAKE_DIR_LIST(MCA_$2_ALL_SUBDIRS, $2, [$all_components])
OMPI_MCA_MAKE_DIR_LIST(MCA_$2_STATIC_SUBDIRS, $2, [$static_components])
OMPI_MCA_MAKE_DIR_LIST(MCA_$2_DSO_SUBDIRS, $2, [$dso_components])
# add all the makefiles for the framework to the CONFIG_FILES.
# Don't add common/base, since it doesn't exist
m4_if([$2], [common],
[AC_CONFIG_FILES([$1/mca/$2/Makefile $1/dynamic-mca/$2/Makefile])],
[AC_CONFIG_FILES([$1/mca/$2/Makefile $1/dynamic-mca/$2/Makefile $1/mca/$2/base/Makefile])])
[AC_CONFIG_FILES([$1/mca/$2/Makefile])],
[AC_CONFIG_FILES([$1/mca/$2/Makefile $1/mca/$2/base/Makefile])])
# Create the final .h file that will be included in the type's
@ -456,9 +471,6 @@ EOF
AC_DEFUN([MCA_CONFIGURE_NO_CONFIG_COMPONENT],[
ompi_show_subsubsubtitle "MCA component $2:$3 (no configuration)"
# remove any possible symlink in the mca-dynamic tree
rm -f $1/dynamic-mca/$2/$3
MCA_COMPONENT_BUILD_CHECK($1, $2, $3,
[should_build=$8], [should_build=0])
MCA_COMPONENT_COMPILE_MODE($1, $2, $3, compile_mode)
@ -502,9 +514,6 @@ AC_DEFUN([MCA_CONFIGURE_NO_CONFIG_COMPONENT],[
AC_DEFUN([MCA_CONFIGURE_M4_CONFIG_COMPONENT],[
ompi_show_subsubsubtitle "MCA component $2:$3 (m4 configuration macro)"
# remove any possible symlink in the mca-dynamic tree
rm -f $1/dynamic-mca/$2/$3
MCA_COMPONENT_BUILD_CHECK($1, $2, $3, [should_build=$8], [should_build=0])
# Allow the component to override the build mode if it really wants to.
# It is, of course, free to end up calling MCA_COMPONENT_COMPILE_MODE
@ -668,9 +677,6 @@ AC_DEFUN([MCA_PROCESS_COMPONENT],[
if test "$8" = "dso" ; then
$6="$$6 $component"
rm -f "$project/dynamic-mca/$framework/$component"
$LN_S "$OMPI_TOP_BUILDDIR/$project/mca/$framework/$component" \
"$project/dynamic-mca/$framework/$component"
else
$7="mca/$framework/$component/libmca_${framework}_${component}.la $$7"
echo "extern const mca_base_component_t mca_${framework}_${component}_component;" >> $outfile.extern
@ -973,3 +979,14 @@ else
fi
rm $2/mca/$1/$1_direct_call.h.template])
])
# OMPI_MCA_MAKE_DIR_LIST(subst'ed variable, framework, shell list)
# -------------------------------------------------------------------------
AC_DEFUN([OMPI_MCA_MAKE_DIR_LIST],[
$1=
for item in $3 ; do
$1="$$1 mca/$2/$item"
done
AC_SUBST($1)
])

Просмотреть файл

@ -1665,66 +1665,24 @@ AC_CONFIG_FILES([
contrib/Makefile
opal/Makefile
opal/include/Makefile
opal/include/sys/Makefile
opal/include/sys/alpha/Makefile
opal/include/sys/amd64/Makefile
opal/include/sys/ia32/Makefile
opal/include/sys/ia64/Makefile
opal/include/sys/mips/Makefile
opal/include/sys/powerpc/Makefile
opal/include/sys/sparc/Makefile
opal/include/sys/sparcv9/Makefile
opal/include/sys/win32/Makefile
opal/asm/Makefile
opal/class/Makefile
opal/event/Makefile
opal/event/compat/Makefile
opal/event/compat/sys/Makefile
opal/memory/Makefile
opal/runtime/Makefile
opal/threads/Makefile
opal/util/Makefile
opal/mca/Makefile
opal/dynamic-mca/Makefile
opal/mca/base/Makefile
orte/Makefile
orte/include/Makefile
orte/class/Makefile
orte/dps/Makefile
orte/runtime/Makefile
orte/util/Makefile
orte/tools/Makefile
orte/tools/console/Makefile
orte/tools/orted/Makefile
orte/tools/orteprobe/Makefile
orte/tools/orterun/Makefile
orte/tools/openmpi/Makefile
orte/mca/Makefile
orte/dynamic-mca/Makefile
ompi/Makefile
ompi/include/Makefile
ompi/class/Makefile
ompi/attribute/Makefile
ompi/communicator/Makefile
ompi/datatype/Makefile
ompi/debuggers/Makefile
ompi/errhandler/Makefile
ompi/file/Makefile
ompi/group/Makefile
ompi/info/Makefile
ompi/op/Makefile
ompi/proc/Makefile
ompi/request/Makefile
ompi/runtime/Makefile
ompi/win/Makefile
ompi/mpi/Makefile
ompi/mpi/c/Makefile
@ -1737,13 +1695,9 @@ AC_CONFIG_FILES([
ompi/mpi/f90/fortran_sizes.h
ompi/mpi/f90/scripts/Makefile
ompi/tools/Makefile
ompi/tools/ompi_info/Makefile
ompi/tools/wrappers/Makefile
ompi/mca/Makefile
ompi/dynamic-mca/Makefile
test/Makefile
test/asm/Makefile
test/class/Makefile

Просмотреть файл

@ -101,48 +101,64 @@ f77_pmpi_lib =
endif
SUBDIRS = \
include \
attribute \
class \
communicator \
datatype \
debuggers \
errhandler \
file \
group \
info \
mca \
mpi \
op \
proc \
request \
runtime \
win \
$(MCA_ompi_FRAMEWORKS_SUBDIRS) \
$(MCA_ompi_FRAMEWORK_COMPONENT_STATIC_SUBDIRS) \
. \
dynamic-mca \
tools
$(MCA_ompi_FRAMEWORK_COMPONENT_DSO_SUBDIRS)
DIST_SUBDIRS = \
debuggers \
mpi \
$(MCA_ompi_FRAMEWORKS_SUBDIRS) \
$(MCA_ompi_FRAMEWORK_COMPONENT_ALL_SUBDIRS)
# Build the main MPI library
lib_LTLIBRARIES = libmpi.la
libmpi_la_SOURCES =
libmpi_la_LIBADD = \
attribute/libattribute.la \
class/libclass.la \
communicator/libcommunicator.la \
datatype/libdatatype.la \
debuggers/libdebuggers.la \
errhandler/liberrhandler.la \
file/libfile.la \
group/libgroup.la \
info/libinfo.la \
mpi/c/libmpi_c.la $(c_mpi_lib) $(c_pmpi_lib) \
$(f77_base_lib) $(f77_mpi_lib) $(f77_pmpi_lib) \
runtime/libmpiruntime.la \
op/libop.la \
proc/libproc.la \
request/librequest.la \
$(MCA_ompi_FRAMEWORK_LIBS) $(top_ompi_builddir)/orte/liborte.la
mpi/c/libmpi_c.la \
$(c_mpi_lib) \
$(c_pmpi_lib) \
$(f77_base_lib) \
$(f77_mpi_lib) \
$(f77_pmpi_lib) \
$(MCA_ompi_FRAMEWORK_LIBS) \
$(top_ompi_builddir)/orte/liborte.la
libmpi_la_DEPENDENCIES = $(libmpi_la_LIBADD)
# included subdirectory Makefile.am's and appended-to variables
headers =
noinst_LTLIBRARIES =
nobase_ompi_HEADERS =
dist_pkgdata_DATA =
libmpi_la_SOURCES += $(headers)
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ompidir = $(includedir)/openmpi/ompi
nobase_ompi_HEADERS += $(headers)
else
ompidir = $(includedir)
endif
include include/Makefile.am
include class/Makefile.am
include attribute/Makefile.am
include communicator/Makefile.am
include datatype/Makefile.am
include errhandler/Makefile.am
include file/Makefile.am
include group/Makefile.am
include info/Makefile.am
include op/Makefile.am
include proc/Makefile.am
include request/Makefile.am
include runtime/Makefile.am
include win/Makefile.am
include tools/Makefile.am

Просмотреть файл

@ -14,25 +14,11 @@
# $HEADER$
#
# This makefile.am does not stand on its own - it is included from ompi/Makefile.am
headers += \
attribute/attribute.h
noinst_LTLIBRARIES = libattribute.la
# Source code files
headers = \
attribute.h
libattribute_la_SOURCES = \
$(headers) \
attribute.c \
attribute_predefined.c
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ompidir = $(includedir)/openmpi/ompi/attribute
ompi_HEADERS = $(headers)
else
ompidir = $(includedir)
endif
libmpi_la_SOURCES += \
attribute/attribute.c \
attribute/attribute_predefined.c

Просмотреть файл

@ -15,33 +15,19 @@
# $HEADER$
#
# This makefile.am does not stand on its own - it is included from ompi/Makefile.am
headers += \
class/ompi_circular_buffer_fifo.h \
class/ompi_fifo.h \
class/ompi_free_list.h \
class/ompi_bitmap.h \
class/ompi_pointer_array.h \
class/ompi_rb_tree.h
noinst_LTLIBRARIES = libclass.la
# Source code files
headers = \
ompi_circular_buffer_fifo.h \
ompi_fifo.h \
ompi_free_list.h \
ompi_bitmap.h \
ompi_pointer_array.h \
ompi_rb_tree.h
libclass_la_SOURCES = \
$(headers) \
ompi_bitmap.c \
ompi_free_list.c \
ompi_pointer_array.c \
ompi_rb_tree.c
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ompidir = $(includedir)/openmpi/ompi/class
ompi_HEADERS = $(headers)
else
ompidir = $(includedir)
endif
libmpi_la_SOURCES += \
class/ompi_bitmap.c \
class/ompi_free_list.c \
class/ompi_pointer_array.c \
class/ompi_rb_tree.c

Просмотреть файл

@ -15,28 +15,14 @@
# $HEADER$
#
# This makefile.am does not stand on its own - it is included from ompi/Makefile.am
headers += \
communicator/communicator.h
noinst_LTLIBRARIES = libcommunicator.la
# Source code files
headers = \
communicator.h
libcommunicator_la_SOURCES = \
$(headers) \
comm_init.c \
comm.c \
comm_cid.c \
comm_dyn.c \
comm_publish.c
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ompidir = $(includedir)/openmpi/ompi/communicator
ompi_HEADERS = $(headers)
else
ompidir = $(includedir)
endif
libmpi_la_SOURCES += \
communicator/comm_init.c \
communicator/comm.c \
communicator/comm_cid.c \
communicator/comm_dyn.c \
communicator/comm_publish.c

Просмотреть файл

@ -15,25 +15,33 @@
# $HEADER$
#
# This makefile.am does not stand on its own - it is included from ompi/Makefile.am
headers += \
datatype/datatype.h \
datatype/datatype_internal.h \
datatype/dt_arch.h \
datatype/convertor.h
noinst_LTLIBRARIES = libdatatype.la
# Source code files
headers = datatype.h datatype_internal.h dt_arch.h convertor.h
libdatatype_la_SOURCES = $(headers) \
dt_add.c dt_create.c dt_create_array.c dt_create_dup.c dt_create_indexed.c \
dt_create_struct.c dt_create_vector.c dt_destroy.c dt_module.c \
dt_optimize.c dt_pack.c dt_sndrcv.c dt_unpack.c fake_stack.c dt_args.c \
dt_arch.c dt_external32.c dt_match_size.c convertor.c new_pack.c new_unpack.c
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ompidir = $(includedir)/openmpi/ompi/datatype
ompi_HEADERS = $(headers)
else
ompidir = $(includedir)
endif
libmpi_la_SOURCES += \
datatype/dt_add.c \
datatype/dt_create.c \
datatype/dt_create_array.c \
datatype/dt_create_dup.c \
datatype/dt_create_indexed.c \
datatype/dt_create_struct.c \
datatype/dt_create_vector.c \
datatype/dt_destroy.c \
datatype/dt_module.c \
datatype/dt_optimize.c \
datatype/dt_pack.c \
datatype/dt_sndrcv.c \
datatype/dt_unpack.c \
datatype/fake_stack.c \
datatype/dt_args.c \
datatype/dt_arch.c \
datatype/dt_external32.c \
datatype/dt_match_size.c \
datatype/convertor.c \
datatype/new_pack.c \
datatype/new_unpack.c

Просмотреть файл

@ -16,7 +16,7 @@
SUBDIRS = $(MCA_allocator_DSO_SUBDIRS)
SUBDIRS = $(MCA_allocator_DSO_COMPONENTS)
DISTCLEANFILES = $(SUBDIRS)
# Every directory under here is a sym link to something in the main

Просмотреть файл

@ -16,7 +16,7 @@
SUBDIRS = $(MCA_bml_DSO_SUBDIRS)
SUBDIRS = $(MCA_bml_DSO_COMPONENTS)
DISTCLEANFILES = $(SUBDIRS)
# Every directory under here is a sym link to something in the main

Просмотреть файл

@ -16,7 +16,7 @@
SUBDIRS = $(MCA_btl_DSO_SUBDIRS)
SUBDIRS = $(MCA_btl_DSO_COMPONENTS)
DISTCLEANFILES = $(SUBDIRS)
# Every directory under here is a sym link to something in the main

Просмотреть файл

@ -16,7 +16,7 @@
SUBDIRS = $(MCA_coll_DSO_SUBDIRS)
SUBDIRS = $(MCA_coll_DSO_COMPONENTS)
DISTCLEANFILES = $(SUBDIRS)
# Every directory under here is a sym link to something in the main

Просмотреть файл

@ -16,7 +16,7 @@
SUBDIRS = $(MCA_common_DSO_SUBDIRS)
SUBDIRS = $(MCA_common_DSO_COMPONENTS)
DISTCLEANFILES = $(SUBDIRS)
# Every directory under here is a sym link to something in the main

Просмотреть файл

@ -16,7 +16,7 @@
SUBDIRS = $(MCA_io_DSO_SUBDIRS)
SUBDIRS = $(MCA_io_DSO_COMPONENTS)
DISTCLEANFILES = $(SUBDIRS)
# Every directory under here is a sym link to something in the main

Просмотреть файл

@ -16,7 +16,7 @@
SUBDIRS = $(MCA_mpool_DSO_SUBDIRS)
SUBDIRS = $(MCA_mpool_DSO_COMPONENTS)
DISTCLEANFILES = $(SUBDIRS)
# Every directory under here is a sym link to something in the main

Просмотреть файл

@ -16,7 +16,7 @@
SUBDIRS = $(MCA_pml_DSO_SUBDIRS)
SUBDIRS = $(MCA_pml_DSO_COMPONENTS)
DISTCLEANFILES = $(SUBDIRS)
# Every directory under here is a sym link to something in the main

Просмотреть файл

@ -16,7 +16,7 @@
SUBDIRS = $(MCA_ptl_DSO_SUBDIRS)
SUBDIRS = $(MCA_ptl_DSO_COMPONENTS)
DISTCLEANFILES = $(SUBDIRS)
# Every directory under here is a sym link to something in the main

Просмотреть файл

@ -16,7 +16,7 @@
include $(top_srcdir)/config/Makefile.options
SUBDIRS = $(MCA_rcache_DSO_SUBDIRS)
SUBDIRS = $(MCA_rcache_DSO_COMPONENTS)
DISTCLEANFILES = $(SUBDIRS)
# Every directory under here is a sym link to something in the main

Просмотреть файл

@ -16,7 +16,7 @@
SUBDIRS = $(MCA_topo_DSO_SUBDIRS)
SUBDIRS = $(MCA_topo_DSO_COMPONENTS)
DISTCLEANFILES = $(SUBDIRS)
# Every directory under here is a sym link to something in the main

Просмотреть файл

@ -15,33 +15,19 @@
# $HEADER$
#
# This makefile.am does not stand on its own - it is included from ompi/Makefile.am
headers += \
errhandler/errclass.h \
errhandler/errcode.h \
errhandler/errcode-internal.h \
errhandler/errhandler.h \
errhandler/errhandler_predefined.h
noinst_LTLIBRARIES = liberrhandler.la
# Source code files
headers = \
errclass.h \
errcode.h \
errcode-internal.h \
errhandler.h \
errhandler_predefined.h
liberrhandler_la_SOURCES = \
$(headers) \
errhandler.c \
errhandler_invoke.c \
errhandler_predefined.c \
errcode.c \
errclass.c \
errcode-internal.c
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ompidir = $(includedir)/openmpi/ompi/errhandler
ompi_HEADERS = $(headers)
else
ompidir = $(includedir)
endif
libmpi_la_SOURCES += \
errhandler/errhandler.c \
errhandler/errhandler_invoke.c \
errhandler/errhandler_predefined.c \
errhandler/errcode.c \
errhandler/errclass.c \
errhandler/errcode-internal.c

Просмотреть файл

@ -14,24 +14,10 @@
# $HEADER$
#
# This makefile.am does not stand on its own - it is included from ompi/Makefile.am
headers += \
file/file.h
noinst_LTLIBRARIES = libfile.la
# Source code files
headers = \
file.h
libfile_la_SOURCES = \
$(headers) \
file.c
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ompidir = $(includedir)/openmpi/ompi/file
ompi_HEADERS = $(headers)
else
ompidir = $(includedir)
endif
libmpi_la_SOURCES += \
file/file.c

Просмотреть файл

@ -15,26 +15,12 @@
# $HEADER$
#
# This makefile.am does not stand on its own - it is included from ompi/Makefile.am
headers += \
group/group.h
noinst_LTLIBRARIES = libgroup.la
# Source code files
headers = \
group.h
libgroup_la_SOURCES = \
$(headers) \
group.c \
group_init.c \
group_rank.c
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ompidir = $(includedir)/openmpi/ompi/group
ompi_HEADERS = $(headers)
else
ompidir = $(includedir)
endif
libmpi_la_SOURCES += \
group/group.c \
group/group_init.c \
group/group_rank.c

Просмотреть файл

@ -14,19 +14,10 @@
# $HEADER$
#
# This makefile.am does not stand on its own - it is included from ompi/Makefile.am
noinst_HEADERS = \
constants.h \
ompi_socket_errno.h \
totalview.h \
types.h
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ompidir = $(includedir)/openmpi/ompi/include
ompi_HEADERS = $(noinst_HEADERS)
else
ompidir = $(includedir)
endif
headers += \
include/constants.h \
include/ompi_socket_errno.h \
include/totalview.h \
include/types.h

Просмотреть файл

@ -15,24 +15,10 @@
# $HEADER$
#
# This makefile.am does not stand on its own - it is included from ompi/Makefile.am
headers += \
info/info.h
noinst_LTLIBRARIES = libinfo.la
# Source code files
headers = \
info.h
libinfo_la_SOURCES = \
$(headers) \
info.c
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ompidir = $(includedir)/openmpi/ompi/info
ompi_HEADERS = $(headers)
else
ompidir = $(includedir)
endif
libmpi_la_SOURCES += \
info/info.c

Просмотреть файл

@ -1,21 +0,0 @@
#
# 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$
#
EXTRA_DIST = win_makefile
SUBDIRS = $(MCA_ompi_FRAMEWORKS)

Просмотреть файл

@ -16,8 +16,7 @@
SUBDIRS = base $(MCA_allocator_STATIC_SUBDIRS)
DIST_SUBDIRS = base $(MCA_allocator_ALL_SUBDIRS)
SUBDIRS = base
# Source code files

Просмотреть файл

@ -16,8 +16,7 @@
SUBDIRS = base $(MCA_bml_STATIC_SUBDIRS)
DIST_SUBDIRS = base $(MCA_bml_ALL_SUBDIRS)
SUBDIRS = base
# Source code files

Просмотреть файл

@ -16,8 +16,7 @@
SUBDIRS = base $(MCA_btl_STATIC_SUBDIRS)
DIST_SUBDIRS = base $(MCA_btl_ALL_SUBDIRS)
SUBDIRS = base
# Source code files

Просмотреть файл

@ -16,8 +16,7 @@
SUBDIRS = base $(MCA_coll_STATIC_SUBDIRS)
DIST_SUBDIRS = base $(MCA_coll_ALL_SUBDIRS)
SUBDIRS = base
# Source code files

Просмотреть файл

@ -16,5 +16,4 @@
SUBDIRS = $(MCA_common_STATIC_SUBDIRS)
DIST_SUBDIRS = $(MCA_common_ALL_SUBDIRS)
SUBDIRS =

Просмотреть файл

@ -16,8 +16,7 @@
SUBDIRS = base $(MCA_io_STATIC_SUBDIRS)
DIST_SUBDIRS = base $(MCA_io_ALL_SUBDIRS)
SUBDIRS = base
# Source code files

Просмотреть файл

@ -16,8 +16,7 @@
SUBDIRS = base $(MCA_mpool_STATIC_SUBDIRS)
DIST_SUBDIRS = base $(MCA_mpool_ALL_SUBDIRS)
SUBDIRS = base
# Source code files

Просмотреть файл

@ -16,8 +16,7 @@
SUBDIRS = base $(MCA_pml_STATIC_SUBDIRS)
DIST_SUBDIRS = base $(MCA_pml_ALL_SUBDIRS)
SUBDIRS = base
# Source code files

Просмотреть файл

@ -16,8 +16,7 @@
SUBDIRS = base $(MCA_ptl_STATIC_SUBDIRS)
DIST_SUBDIRS = base $(MCA_ptl_ALL_SUBDIRS)
SUBDIRS = base
# Source code files

Просмотреть файл

@ -14,10 +14,7 @@
# $HEADER$
#
include $(top_srcdir)/config/Makefile.options
SUBDIRS = base $(MCA_rcache_STATIC_SUBDIRS)
DIST_SUBDIRS = base $(MCA_rcache_ALL_SUBDIRS)
SUBDIRS = base
# Source code files

Просмотреть файл

@ -16,8 +16,7 @@
SUBDIRS = base $(MCA_topo_STATIC_SUBDIRS)
DIST_SUBDIRS = base $(MCA_topo_ALL_SUBDIRS)
SUBDIRS = base
# Source code files

Просмотреть файл

@ -15,26 +15,12 @@
# $HEADER$
#
# This makefile.am does not stand on its own - it is included from ompi/Makefile.am
headers += \
op/op.h \
op/op_predefined.h
noinst_LTLIBRARIES = libop.la
# Source code files
headers = \
op.h \
op_predefined.h
libop_la_SOURCES = \
$(headers) \
op.c \
op_predefined.c
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ompidir = $(includedir)/openmpi/ompi/op
ompi_HEADERS = $(headers)
else
ompidir = $(includedir)
endif
libmpi_la_SOURCES += \
op/op.c \
op/op_predefined.c

Просмотреть файл

@ -15,24 +15,10 @@
# $HEADER$
#
# This makefile.am does not stand on its own - it is included from ompi/Makefile.am
headers += \
proc/proc.h
noinst_LTLIBRARIES = libproc.la
# Source code files
headers = \
proc.h
libproc_la_SOURCES = \
$(headers) \
proc.c
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ompidir = $(includedir)/openmpi/ompi/proc
ompi_HEADERS = $(headers)
else
ompidir = $(includedir)
endif
libmpi_la_SOURCES += \
proc/proc.c

Просмотреть файл

@ -15,28 +15,14 @@
# $HEADER$
#
# This makefile.am does not stand on its own - it is included from ompi/Makefile.am
headers += \
request/grequest.h \
request/request.h
noinst_LTLIBRARIES = librequest.la
# Source code files
headers = \
grequest.h \
request.h
librequest_la_SOURCES = \
$(headers) \
grequest.c \
request.c \
req_test.c \
req_wait.c
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ompidir = $(includedir)/openmpi/ompi/request
ompi_HEADERS = $(headers)
else
ompidir = $(includedir)
endif
libmpi_la_SOURCES += \
request/grequest.c \
request/request.c \
request/req_test.c \
request/req_wait.c

Просмотреть файл

@ -14,30 +14,16 @@
# $HEADER$
#
AM_CPPFLAGS = -I$(top_builddir)/src/event
# This makefile.am does not stand on its own - it is included from ompi/Makefile.am
noinst_LTLIBRARIES = libmpiruntime.la
dist_pkgdata_DATA += runtime/help-mpi-runtime.txt
dist_pkgdata_DATA = help-mpi-runtime.txt
headers += \
runtime/mpiruntime.h \
runtime/params.h
# Source code files
headers = \
mpiruntime.h \
params.h
libmpiruntime_la_SOURCES = \
$(headers) \
ompi_mpi_abort.c \
ompi_mpi_init.c \
ompi_mpi_finalize.c \
ompi_mpi_params.c
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ompidir = $(includedir)/openmpi/ompi/runtime
ompi_HEADERS = $(headers)
else
ompidir = $(includedir)
endif
libmpi_la_SOURCES += \
runtime/ompi_mpi_abort.c \
runtime/ompi_mpi_init.c \
runtime/ompi_mpi_finalize.c \
runtime/ompi_mpi_params.c

Просмотреть файл

@ -15,8 +15,10 @@
# $HEADER$
#
# This makefile.am does not stand on its own - it is included from opal/Makefile.am
EXTRA_DIST += tools/win_makefile
EXTRA_DIST = win_makefile
SUBDIRS = ompi_info wrappers
SUBDIRS += \
tools/ompi_info \
tools/wrappers

Просмотреть файл

@ -15,24 +15,10 @@
# $HEADER$
#
# This makefile.am does not stand on its own - it is included from ompi/Makefile.am
headers += \
win/win.h
noinst_LTLIBRARIES = libwin.la
# Source code files
headers = \
win.h
libwin_la_SOURCES = \
$(headers) \
win.c
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ompidir = $(includedir)/openmpi/ompi/win
ompi_HEADERS = $(headers)
else
ompidir = $(includedir)
endif
libmpi_la_SOURCES += \
win/win.c

Просмотреть файл

@ -15,18 +15,24 @@
#
SUBDIRS = \
include \
$(LIBLTDL_SUBDIR) \
asm \
class \
event \
mca \
memory \
runtime \
threads \
util \
mca/base \
$(MCA_opal_FRAMEWORKS_SUBDIRS) \
$(MCA_opal_FRAMEWORK_COMPONENT_STATIC_SUBDIRS) \
. \
dynamic-mca
$(MCA_opal_FRAMEWORK_COMPONENT_DSO_SUBDIRS)
DIST_SUBDIRS = \
$(LIBLTDL_SUBDIR) \
asm \
event \
util \
mca/base \
$(MCA_opal_FRAMEWORKS_SUBDIRS) \
$(MCA_opal_FRAMEWORK_COMPONENT_ALL_SUBDIRS)
# Build the main OPAL library
@ -35,26 +41,37 @@ libopal_la_SOURCES =
libopal_la_LIBADD = \
$(LIBLTDL_LTLIB) \
asm/libasm.la \
class/libclass.la \
event/libevent.la \
mca/base/libmca_base.la \
memory/libopalmemory.la \
runtime/libruntime.la \
threads/libthreads.la \
util/libopalutil.la \
$(MCA_opal_FRAMEWORK_LIBS)
libopal_la_DEPENDENCIES = $(libopal_la_LIBADD)
# included subdirectory Makefile.am's and appended-to variables
headers =
noinst_LTLIBRARIES =
nobase_opal_HEADERS =
dist_pkgdata_DATA =
libopal_la_SOURCES += $(headers)
# Conditionally install the header files
if WANT_INSTALL_HEADERS
opaldir = $(includedir)/openmpi/opal
nobase_opal_HEADERS += $(headers)
# This is somewhat of a hack -- libltdl is installed by libtoolize,
# and us installing the header here is slightly less kludgey than
# hacking their Makefile.am.
if WANT_INSTALL_HEADERS
ompidir = $(includedir)/openmpi/opal/libltdl
ompi_HEADERS = libltdl/ltdl.h
nobase_opal_HEADERS += libltdl/ltdl.h
else
ompidir = $(includedir)
opaldir = $(includedir)
endif
include include/Makefile.am
include class/Makefile.am
include memory/Makefile.am
include runtime/Makefile.am
include threads/Makefile.am
include mca/Makefile.am

Просмотреть файл

@ -15,32 +15,19 @@
# $HEADER$
#
noinst_LTLIBRARIES = libclass.la
# This makefile.am does not stand on its own - it is included from opal/Makefile.am
# Source code files
headers += \
class/opal_free_list.h \
class/opal_hash_table.h \
class/opal_list.h \
class/opal_object.h \
class/opal_value_array.h
headers = \
opal_free_list.h \
opal_hash_table.h \
opal_list.h \
opal_object.h \
opal_value_array.h
libclass_la_SOURCES = \
$(headers) \
opal_free_list.c \
opal_hash_table.c \
opal_list.c \
opal_object.c \
opal_value_array.c
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ompidir = $(includedir)/openmpi/opal/class
ompi_HEADERS = $(headers)
else
ompidir = $(includedir)
endif
libopal_la_SOURCES += \
class/opal_free_list.c \
class/opal_hash_table.c \
class/opal_list.c \
class/opal_object.c \
class/opal_value_array.c

Просмотреть файл

@ -1,20 +0,0 @@
#
# 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$
#
SUBDIRS = $(MCA_opal_FRAMEWORKS)

Просмотреть файл

@ -1,26 +0,0 @@
#
# 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$
#
SUBDIRS = $(MCA_maffinity_DSO_SUBDIRS)
DISTCLEANFILES = $(SUBDIRS)
# Every directory under here is a sym link to something in the main
# src/mca tree. Hence, we don't want to distribute anything under
# here.
DIST_SUBDIRS =

Просмотреть файл

@ -1,26 +0,0 @@
#
# 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$
#
SUBDIRS = $(MCA_memory_DSO_SUBDIRS)
DISTCLEANFILES = $(SUBDIRS)
# Every directory under here is a sym link to something in the main
# src/mca tree. Hence, we don't want to distribute anything under
# here.
DIST_SUBDIRS =

Просмотреть файл

@ -1,26 +0,0 @@
#
# 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$
#
SUBDIRS = $(MCA_paffinity_DSO_SUBDIRS)
DISTCLEANFILES = $(SUBDIRS)
# Every directory under here is a sym link to something in the main
# src/mca tree. Hence, we don't want to distribute anything under
# here.
DIST_SUBDIRS =

Просмотреть файл

@ -1,26 +0,0 @@
#
# 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$
#
SUBDIRS = $(MCA_timer_DSO_SUBDIRS)
DISTCLEANFILES = $(SUBDIRS)
# Every directory under here is a sym link to something in the main
# src/mca tree. Hence, we don't want to distribute anything under
# here.
DIST_SUBDIRS =

Просмотреть файл

@ -14,18 +14,9 @@
# $HEADER$
#
# This makefile.am does not stand on its own - it is included from opal/Makefile.am
headers += \
include/constants.h
SUBDIRS = sys
noinst_HEADERS = \
constants.h
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ompidir = $(includedir)/openmpi/opal/include
ompi_HEADERS = $(noinst_HEADERS)
else
ompidir = $(includedir)
endif
include include/sys/Makefile.am

Просмотреть файл

@ -14,21 +14,21 @@
# $HEADER$
#
# This makefile.am does not stand on its own - it is included from opal/Makefile.am
headers += \
include/sys/architecture.h \
include/sys/atomic.h \
include/sys/atomic_impl.h \
include/sys/cache.h \
include/sys/timer.h
SUBDIRS = alpha amd64 ia32 ia64 mips powerpc sparc sparcv9 win32
noinst_HEADERS = architecture.h \
atomic.h \
atomic_impl.h \
cache.h \
timer.h
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ompidir = $(includedir)/openmpi/include/sys
ompi_HEADERS = $(noinst_HEADERS)
else
ompidir = $(includedir)
endif
include include/sys/alpha/Makefile.am
include include/sys/amd64/Makefile.am
include include/sys/ia32/Makefile.am
include include/sys/ia64/Makefile.am
include include/sys/mips/Makefile.am
include include/sys/powerpc/Makefile.am
include include/sys/sparc/Makefile.am
include include/sys/sparcv9/Makefile.am
include include/sys/win32/Makefile.am

Просмотреть файл

@ -14,15 +14,6 @@
# $HEADER$
#
# This makefile.am does not stand on its own - it is included from opal/Makefile.am
noinst_HEADERS = atomic.h
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ompidir = $(includedir)/openmpi/include/sys/alpha
ompi_HEADERS = $(noinst_HEADERS)
else
ompidir = $(includedir)
endif
headers += include/sys/alpha/atomic.h

Просмотреть файл

@ -14,15 +14,8 @@
# $HEADER$
#
# This makefile.am does not stand on its own - it is included from opal/Makefile.am
noinst_HEADERS = atomic.h timer.h
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ompidir = $(includedir)/openmpi/include/sys/amd64
ompi_HEADERS = $(noinst_HEADERS)
else
ompidir = $(includedir)
endif
headers += \
include/sys/amd64/atomic.h \
include/sys/amd64/timer.h

Просмотреть файл

@ -14,15 +14,8 @@
# $HEADER$
#
# This makefile.am does not stand on its own - it is included from opal/Makefile.am
noinst_HEADERS = atomic.h timer.h
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ompidir = $(includedir)/openmpi/include/sys/ia32
ompi_HEADERS = $(noinst_HEADERS)
else
ompidir = $(includedir)
endif
headers += \
include/sys/ia32/atomic.h \
include/sys/ia32/timer.h

Просмотреть файл

@ -14,15 +14,8 @@
# $HEADER$
#
# This makefile.am does not stand on its own - it is included from opal/Makefile.am
noinst_HEADERS = atomic.h timer.h
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ompidir = $(includedir)/openmpi/include/sys/ia64
ompi_HEADERS = $(noinst_HEADERS)
else
ompidir = $(includedir)
endif
headers += \
include/sys/ia64/atomic.h \
include/sys/ia64/timer.h

Просмотреть файл

@ -14,15 +14,8 @@
# $HEADER$
#
# This makefile.am does not stand on its own - it is included from opal/Makefile.am
headers += \
include/sys/mips/atomic.h
noinst_HEADERS = atomic.h
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ompidir = $(includedir)/openmpi/include/sys/mips
ompi_HEADERS = $(noinst_HEADERS)
else
ompidir = $(includedir)
endif

Просмотреть файл

@ -14,15 +14,8 @@
# $HEADER$
#
# This makefile.am does not stand on its own - it is included from opal/Makefile.am
noinst_HEADERS = atomic.h timer.h
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ompidir = $(includedir)/openmpi/include/sys/powerpc
ompi_HEADERS = $(noinst_HEADERS)
else
ompidir = $(includedir)
endif
headers += \
include/sys/powerpc/atomic.h \
include/sys/powerpc/timer.h

Просмотреть файл

@ -14,15 +14,7 @@
# $HEADER$
#
# This makefile.am does not stand on its own - it is included from opal/Makefile.am
noinst_HEADERS = atomic.h
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ompidir = $(includedir)/openmpi/include/sys/sparc
ompi_HEADERS = $(noinst_HEADERS)
else
ompidir = $(includedir)
endif
headers += \
include/sys/sparc/atomic.h

Просмотреть файл

@ -14,15 +14,8 @@
# $HEADER$
#
# This makefile.am does not stand on its own - it is included from opal/Makefile.am
noinst_HEADERS = atomic.h timer.h
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ompidir = $(includedir)/openmpi/include/sys/sparc64
ompi_HEADERS = $(noinst_HEADERS)
else
ompidir = $(includedir)
endif
headers += \
include/sys/sparcv9/atomic.h \
include/sys/sparcv9/timer.h

Просмотреть файл

@ -14,15 +14,7 @@
# $HEADER$
#
# This makefile.am does not stand on its own - it is included from opal/Makefile.am
noinst_HEADERS = atomic.h
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ompidir = $(includedir)/openmpi/include/sys/win32
ompi_HEADERS = $(noinst_HEADERS)
else
ompidir = $(includedir)
endif
headers += \
include/sys/win32/atomic.h

Просмотреть файл

@ -14,21 +14,8 @@
# $HEADER$
#
SUBDIRS = \
base \
$(MCA_opal_FRAMEWORKS)
# This makefile.am does not stand on its own - it is included from opal/Makefile.am
# Source code files
headers = mca.h
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ompidir = $(includedir)/openmpi/opal/mca
ompi_HEADERS = $(headers)
else
ompidir = $(includedir)
endif
headers += \
mca/mca.h

Просмотреть файл

@ -14,10 +14,7 @@
# $HEADER$
#
SUBDIRS = base $(MCA_maffinity_STATIC_SUBDIRS)
DIST_SUBDIRS = base $(MCA_maffinity_ALL_SUBDIRS)
SUBDIRS = base
# Source code files
@ -26,7 +23,7 @@ headers = maffinity.h maffinity_types.h
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ompidir = $(includedir)/openmpi/ompi/mca/maffinity
ompidir = $(includedir)/openmpi/opal/mca/maffinity
ompi_HEADERS = $(headers)
else
ompidir = $(includedir)

Просмотреть файл

@ -32,7 +32,7 @@ libmca_maffinity_base_la_SOURCES = \
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ompidir = $(includedir)/openmpi/ompi/mca/maffinity/base
ompidir = $(includedir)/openmpi/opal/mca/maffinity/base
ompi_HEADERS = $(headers)
else
ompidir = $(includedir)

Просмотреть файл

@ -14,10 +14,7 @@
# $HEADER$
#
SUBDIRS = base $(MCA_memory_STATIC_SUBDIRS)
DIST_SUBDIRS = base $(MCA_memory_ALL_SUBDIRS)
SUBDIRS = base
# Source code files
headers = memory.h

Просмотреть файл

@ -29,7 +29,7 @@ libmca_memory_base_la_SOURCES = \
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ompidir = $(includedir)/openmpi/ompi/mca/memory/base
ompidir = $(includedir)/openmpi/opal/mca/memory/base
ompi_HEADERS = $(headers)
else
ompidir = $(includedir)

Просмотреть файл

@ -14,10 +14,8 @@
# $HEADER$
#
SUBDIRS = base $(MCA_paffinity_STATIC_SUBDIRS)
DIST_SUBDIRS = base $(MCA_paffinity_ALL_SUBDIRS)
SUBDIRS = base
DIST_SUBDIRS = base
# Source code files
@ -26,7 +24,7 @@ headers = paffinity.h
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ompidir = $(includedir)/openmpi/ompi/mca/paffinity
ompidir = $(includedir)/openmpi/opal/mca/paffinity
ompi_HEADERS = $(headers)
else
ompidir = $(includedir)

Просмотреть файл

@ -32,7 +32,7 @@ libmca_paffinity_base_la_SOURCES = \
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ompidir = $(includedir)/openmpi/ompi/mca/paffinity/base
ompidir = $(includedir)/openmpi/opal/mca/paffinity/base
ompi_HEADERS = $(headers)
else
ompidir = $(includedir)

Просмотреть файл

@ -14,10 +14,8 @@
# $HEADER$
#
SUBDIRS = base $(MCA_timer_STATIC_SUBDIRS)
DIST_SUBDIRS = base $(MCA_timer_ALL_SUBDIRS)
SUBDIRS = base
DIST_SUBDIRS = base
# Source code files
headers = timer.h

Просмотреть файл

@ -30,7 +30,7 @@ libmca_timer_base_la_SOURCES = \
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ompidir = $(includedir)/openmpi/ompi/mca/timer/base
ompidir = $(includedir)/openmpi/opal/mca/timer/base
ompi_HEADERS = $(headers)
else
ompidir = $(includedir)

Просмотреть файл

@ -14,25 +14,12 @@
# $HEADER$
#
noinst_LTLIBRARIES = libopalmemory.la
# This makefile.am does not stand on its own - it is included from opal/Makefile.am
# Source code files
headers += \
memory/memory.h \
memory/memory_internal.h
headers = \
memory.h \
memory_internal.h
libopalmemory_la_SOURCES = \
$(headers) \
memory.c
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ompidir = $(includedir)/openmpi/opal/memory
ompi_HEADERS = $(headers)
else
ompidir = $(includedir)
endif
libopal_la_SOURCES += \
memory/memory.c

Просмотреть файл

@ -15,31 +15,16 @@
# $HEADER$
#
AM_CPPFLAGS = -I$(top_builddir)/src/event
noinst_LTLIBRARIES = libruntime.la
# This makefile.am does not stand on its own - it is included from opal/Makefile.am
# Source code files
dist_pkgdata_DATA += runtime/help-opal-runtime.txt
dist_pkgdata_DATA = help-opal-runtime.txt
headers += \
runtime/opal_progress.h \
runtime/opal.h
headers = \
opal_progress.h \
opal.h
libruntime_la_SOURCES = \
$(headers) \
opal_progress.c \
opal_finalize.c \
opal_init.c
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ompidir = $(includedir)/openmpi/opal/runtime
ompi_HEADERS = $(headers)
else
ompidir = $(includedir)
endif
libopal_la_SOURCES += \
runtime/opal_progress.c \
runtime/opal_finalize.c \
runtime/opal_init.c

Просмотреть файл

@ -15,30 +15,17 @@
# $HEADER$
#
noinst_LTLIBRARIES = libthreads.la
# This makefile.am does not stand on its own - it is included from opal/Makefile.am
# Source code files
headers += \
threads/condition.h \
threads/mutex.h \
threads/mutex_unix.h \
threads/mutex_windows.h \
threads/threads.h
headers = \
condition.h \
mutex.h \
mutex_unix.h \
mutex_windows.h \
threads.h
libthreads_la_SOURCES = \
$(headers) \
condition.c \
mutex.c \
thread.c
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ompidir = $(includedir)/openmpi/opal/threads
ompi_HEADERS = $(headers)
else
ompidir = $(includedir)
endif
libopal_la_SOURCES += \
threads/condition.c \
threads/mutex.c \
threads/thread.c

Просмотреть файл

@ -14,26 +14,47 @@
# $HEADER$
#
AM_CPPFLAGS = -DOMPI_PKGDATADIR=\"$(pkgdatadir)\"
SUBDIRS = \
include \
class \
dps \
mca \
runtime \
util \
$(MCA_orte_FRAMEWORKS_SUBDIRS) \
$(MCA_orte_FRAMEWORK_COMPONENT_STATIC_SUBDIRS) \
. \
dynamic-mca \
tools
$(MCA_orte_FRAMEWORK_COMPONENT_DSO_SUBDIRS)
DIST_SUBDIRS = \
$(MCA_orte_FRAMEWORKS_SUBDIRS) \
$(MCA_orte_FRAMEWORK_COMPONENT_ALL_SUBDIRS)
# Build the main ORTE library
lib_LTLIBRARIES = liborte.la
liborte_la_SOURCES =
liborte_la_LIBADD = \
class/libclass.la \
dps/libdps.la \
runtime/libruntime.la \
util/liborteutil.la \
$(MCA_orte_FRAMEWORK_LIBS) $(top_ompi_builddir)/opal/libopal.la
$(MCA_orte_FRAMEWORK_LIBS) \
$(top_ompi_builddir)/opal/libopal.la
liborte_la_DEPENDENCIES = $(liborte_la_LIBADD)
# included subdirectory Makefile.am's and appended-to variables
headers =
noinst_LTLIBRARIES =
nobase_orte_HEADERS =
dist_pkgdata_DATA =
liborte_la_SOURCES += $(headers)
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ortedir = $(includedir)/openmpi/orte
nobase_orte_HEADERS += $(headers)
else
ortedir = $(includedir)
endif
include include/Makefile.am
include class/Makefile.am
include dps/Makefile.am
include runtime/Makefile.am
include util/Makefile.am
include tools/Makefile.am

Просмотреть файл

@ -15,30 +15,16 @@
# $HEADER$
#
# This makefile.am does not stand on its own - it is included from orte/Makefile.am
headers += \
class/orte_proc_table.h \
class/orte_bitmap.h \
class/orte_pointer_array.h \
class/orte_value_array.h
noinst_LTLIBRARIES = libclass.la
# Source code files
headers = \
orte_proc_table.h \
orte_bitmap.h \
orte_pointer_array.h \
orte_value_array.h
libclass_la_SOURCES = \
$(headers) \
orte_proc_table.c \
orte_bitmap.c \
orte_pointer_array.c \
orte_value_array.c
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ortedir = $(includedir)/openmpi/orte/class
orte_HEADERS = $(headers)
else
ortedir = $(includedir)
endif
liborte_la_SOURCES += \
class/orte_proc_table.c \
class/orte_bitmap.c \
class/orte_pointer_array.c \
class/orte_value_array.c

Просмотреть файл

@ -1,3 +1,4 @@
# -*- makefile -*-
#
# Copyright (c) 2004-2005 The Trustees of Indiana University.
# All rights reserved.
@ -14,33 +15,19 @@
# $HEADER$
#
# This makefile.am does not stand on its own - it is included from orte/Makefile.am
headers += \
dps/dps.h \
dps/dps_types.h \
dps/dps_internal.h
noinst_LTLIBRARIES = libdps.la
# Source code files
headers = \
dps.h \
dps_types.h \
dps_internal.h
libdps_la_SOURCES = \
$(headers) \
dps_internal_functions.c \
dps_load_unload.c \
dps_lookup.c \
dps_pack.c \
dps_peek.c \
dps_register.c \
dps_unpack.c \
orte_dps_open_close.c
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ortedir = $(includedir)/openmpi/orte/dps
orte_HEADERS = $(headers)
else
ortedir = $(includedir)
endif
liborte_la_SOURCES += \
dps/dps_internal_functions.c \
dps/dps_load_unload.c \
dps/dps_lookup.c \
dps/dps_pack.c \
dps/dps_peek.c \
dps/dps_register.c \
dps/dps_unpack.c \
dps/orte_dps_open_close.c

Просмотреть файл

@ -1,19 +0,0 @@
#
# 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$
#
SUBDIRS = $(MCA_orte_FRAMEWORKS)

Просмотреть файл

@ -1,26 +0,0 @@
#
# 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$
#
SUBDIRS = $(MCA_errmgr_DSO_SUBDIRS)
DISTCLEANFILES = $(SUBDIRS)
# Every directory under here is a sym link to something in the main
# src/mca tree. Hence, we don't want to distribute anything under
# here.
DIST_SUBDIRS =

Просмотреть файл

@ -1,26 +0,0 @@
#
# 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$
#
SUBDIRS = $(MCA_gpr_DSO_SUBDIRS)
DISTCLEANFILES = $(SUBDIRS)
# Every directory under here is a sym link to something in the main
# src/mca tree. Hence, we don't want to distribute anything under
# here.
DIST_SUBDIRS =

Просмотреть файл

@ -1,26 +0,0 @@
#
# 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$
#
SUBDIRS = $(MCA_iof_DSO_SUBDIRS)
DISTCLEANFILES = $(SUBDIRS)
# Every directory under here is a sym link to something in the main
# src/mca tree. Hence, we don't want to distribute anything under
# here.
DIST_SUBDIRS =

Просмотреть файл

@ -1,26 +0,0 @@
#
# 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$
#
SUBDIRS = $(MCA_ns_DSO_SUBDIRS)
DISTCLEANFILES = $(SUBDIRS)
# Every directory under here is a sym link to something in the main
# src/mca tree. Hence, we don't want to distribute anything under
# here.
DIST_SUBDIRS =

Просмотреть файл

@ -1,26 +0,0 @@
#
# 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$
#
SUBDIRS = $(MCA_oob_DSO_SUBDIRS)
DISTCLEANFILES = $(SUBDIRS)
# Every directory under here is a sym link to something in the main
# src/mca tree. Hence, we don't want to distribute anything under
# here.
DIST_SUBDIRS =

Просмотреть файл

@ -1,26 +0,0 @@
#
# 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$
#
SUBDIRS = $(MCA_pls_DSO_SUBDIRS)
DISTCLEANFILES = $(SUBDIRS)
# Every directory under here is a sym link to something in the main
# src/mca tree. Hence, we don't want to distribute anything under
# here.
DIST_SUBDIRS =

Просмотреть файл

@ -1,26 +0,0 @@
#
# 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$
#
SUBDIRS = $(MCA_ras_DSO_SUBDIRS)
DISTCLEANFILES = $(SUBDIRS)
# Every directory under here is a sym link to something in the main
# src/mca tree. Hence, we don't want to distribute anything under
# here.
DIST_SUBDIRS =

Просмотреть файл

@ -1,26 +0,0 @@
#
# 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$
#
SUBDIRS = $(MCA_rds_DSO_SUBDIRS)
DISTCLEANFILES = $(SUBDIRS)
# Every directory under here is a sym link to something in the main
# src/mca tree. Hence, we don't want to distribute anything under
# here.
DIST_SUBDIRS =

Просмотреть файл

@ -1,26 +0,0 @@
#
# 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$
#
SUBDIRS = $(MCA_rmaps_DSO_SUBDIRS)
DISTCLEANFILES = $(SUBDIRS)
# Every directory under here is a sym link to something in the main
# src/mca tree. Hence, we don't want to distribute anything under
# here.
DIST_SUBDIRS =

Просмотреть файл

@ -1,26 +0,0 @@
#
# 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$
#
SUBDIRS = $(MCA_rmgr_DSO_SUBDIRS)
DISTCLEANFILES = $(SUBDIRS)
# Every directory under here is a sym link to something in the main
# src/mca tree. Hence, we don't want to distribute anything under
# here.
DIST_SUBDIRS =

Просмотреть файл

@ -1,26 +0,0 @@
#
# 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$
#
SUBDIRS = $(MCA_rml_DSO_SUBDIRS)
DISTCLEANFILES = $(SUBDIRS)
# Every directory under here is a sym link to something in the main
# src/mca tree. Hence, we don't want to distribute anything under
# here.
DIST_SUBDIRS =

Просмотреть файл

@ -1,26 +0,0 @@
#
# 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$
#
SUBDIRS = $(MCA_schema_DSO_SUBDIRS)
DISTCLEANFILES = $(SUBDIRS)
# Every directory under here is a sym link to something in the main
# src/mca tree. Hence, we don't want to distribute anything under
# here.
DIST_SUBDIRS =

Просмотреть файл

@ -1,26 +0,0 @@
#
# 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$
#
SUBDIRS = $(MCA_sds_DSO_SUBDIRS)
DISTCLEANFILES = $(SUBDIRS)
# Every directory under here is a sym link to something in the main
# src/mca tree. Hence, we don't want to distribute anything under
# here.
DIST_SUBDIRS =

Просмотреть файл

@ -1,26 +0,0 @@
#
# 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$
#
SUBDIRS = $(MCA_soh_DSO_SUBDIRS)
DISTCLEANFILES = $(SUBDIRS)
# Every directory under here is a sym link to something in the main
# src/mca tree. Hence, we don't want to distribute anything under
# here.
DIST_SUBDIRS =

Просмотреть файл

@ -1,3 +1,4 @@
# -*- makefile -*-
#
# Copyright (c) 2004-2005 The Trustees of Indiana University.
# All rights reserved.
@ -14,17 +15,8 @@
# $HEADER$
#
# This makefile.am does not stand on its own - it is included from orte/Makefile.am
noinst_HEADERS = \
orte_constants.h \
orte_types.h
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ortedir = $(includedir)/openmpi/orte/include
orte_HEADERS = $(noinst_HEADERS)
else
ortedir = $(includedir)
endif
headers += \
include/orte_constants.h \
include/orte_types.h

Просмотреть файл

@ -1,19 +0,0 @@
#
# 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$
#
SUBDIRS = $(MCA_orte_FRAMEWORKS)

Просмотреть файл

@ -14,10 +14,7 @@
# $HEADER$
#
SUBDIRS = base $(MCA_errmgr_STATIC_SUBDIRS)
DIST_SUBDIRS = base $(MCA_errmgr_ALL_SUBDIRS)
SUBDIRS = base
# Source code files

Просмотреть файл

@ -14,10 +14,7 @@
# $HEADER$
#
SUBDIRS = base $(MCA_gpr_STATIC_SUBDIRS)
DIST_SUBDIRS = base $(MCA_gpr_ALL_SUBDIRS)
SUBDIRS = base
# Source code files

Просмотреть файл

@ -14,10 +14,7 @@
# $HEADER$
#
SUBDIRS = base $(MCA_iof_STATIC_SUBDIRS)
DIST_SUBDIRS = base $(MCA_iof_ALL_SUBDIRS)
SUBDIRS = base
# Source code files

Просмотреть файл

@ -14,10 +14,7 @@
# $HEADER$
#
SUBDIRS = base $(MCA_ns_STATIC_SUBDIRS)
DIST_SUBDIRS = base $(MCA_ns_ALL_SUBDIRS)
SUBDIRS = base
# Source code files

Просмотреть файл

@ -14,11 +14,7 @@
# $HEADER$
#
SUBDIRS = base $(MCA_oob_STATIC_SUBDIRS)
DIST_SUBDIRS = base $(MCA_oob_ALL_SUBDIRS)
SUBDIRS = base
# Source code files

Просмотреть файл

@ -14,10 +14,7 @@
# $HEADER$
#
SUBDIRS = base $(MCA_pls_STATIC_SUBDIRS)
DIST_SUBDIRS = base $(MCA_pls_ALL_SUBDIRS)
SUBDIRS = base
# Source code files

Некоторые файлы не были показаны из-за слишком большого количества измененных файлов Показать больше