1
1
This commit was SVN r418.
Этот коммит содержится в:
Jeff Squyres 2004-01-15 06:12:34 +00:00
родитель 93f163239f
Коммит 603e7fb0ee
3 изменённых файлов: 6 добавлений и 5 удалений

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

@ -498,6 +498,7 @@ AC_CONFIG_FILES([
src/lam/os/linux/x86_64/Makefile src/lam/os/linux/x86_64/Makefile
src/lam/os/tru64/Makefile src/lam/os/tru64/Makefile
src/lam/runtime/Makefile
src/lam/threads/Makefile src/lam/threads/Makefile
src/lam/util/Makefile src/lam/util/Makefile
@ -518,6 +519,7 @@ AC_CONFIG_FILES([
src/mpi/op/Makefile src/mpi/op/Makefile
src/mpi/proc/Makefile src/mpi/proc/Makefile
src/mpi/request/Makefile src/mpi/request/Makefile
src/mpi/runtime/Makefile
src/mca/Makefile src/mca/Makefile

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

@ -5,7 +5,7 @@
include $(top_srcdir)/config/Makefile.options include $(top_srcdir)/config/Makefile.options
SUBDIRS = ctnetwork lfc mem os threads util SUBDIRS = ctnetwork lfc mem os runtime threads util
headers = \ headers = \
atomic.h \ atomic.h \

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

@ -5,7 +5,7 @@
include $(top_srcdir)/config/Makefile.options include $(top_srcdir)/config/Makefile.options
SUBDIRS = communicator datatype interface SUBDIRS = communicator datatype interface runtime
# If the --enable-single-library flag was given to configure, then the # If the --enable-single-library flag was given to configure, then the
# user wants to merge liblam and libmpi into a single big, honkin' # user wants to merge liblam and libmpi into a single big, honkin'
@ -23,11 +23,10 @@ endif
lib_LTLIBRARIES = $(install_lib) lib_LTLIBRARIES = $(install_lib)
noinst_LTLIBRARIES = $(convenience_lib) noinst_LTLIBRARIES = $(convenience_lib)
# To be added shortly
# communicator/libmpi_communicator.la
sources = \ sources = \
datatype/libmpi_datatype.la \ datatype/libmpi_datatype.la \
interface/libmpi_interface.la interface/libmpi_interface.la \
runtime/libmpi_runtime.la
libmpi_la_SOURCES = libmpi_la_SOURCES =
libmpi_la_LIBADD = $(sources) libmpi_la_LIBADD = $(sources)