2852772b32
* Add Portals UTCP reference sds for when we are using the portals reference implementation without the ORTE starters (when we want to pretend like we're on Red Storm, only with a debugger and valgrind and possibly even a printf that actually works...) * Add super-secret --with flag to cnos rml to enable the cnos rml but disable cnos_barrier (for use with portals utcp reference implementation) This commit was SVN r6642.
50 строки
1.6 KiB
Makefile
50 строки
1.6 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$
|
|
#
|
|
|
|
# Use the top-level Makefile.options
|
|
|
|
include $(top_ompi_srcdir)/config/Makefile.options
|
|
|
|
AM_CPPFLAGS = $(sds_portals_utcp_CPPFLAGS)
|
|
|
|
sources = \
|
|
sds_portals_utcp.h \
|
|
sds_portals_utcp_component.c \
|
|
sds_portals_utcp_module.c
|
|
|
|
# Make the output library in this directory, and name it either
|
|
# mca_<type>_<name>.la (for DSO builds) or libmca_<type>_<name>.la
|
|
# (for static builds).
|
|
|
|
if OMPI_BUILD_sds_portals_utcp_DSO
|
|
component_noinst =
|
|
component_install = mca_sds_portals_utcp.la
|
|
else
|
|
component_noinst = libmca_sds_portals_utcp.la
|
|
component_install =
|
|
endif
|
|
|
|
mcacomponentdir = $(libdir)/openmpi
|
|
mcacomponent_LTLIBRARIES = $(component_install)
|
|
mca_sds_portals_utcp_la_SOURCES = $(sources)
|
|
mca_sds_portals_utcp_la_LDFLAGS = -module -avoid-version $(sds_portals_utcp_LDFLAGS)
|
|
mca_sds_portals_utcp_la_LIBADD = $(sds_portals_utcp_LIBS)
|
|
|
|
noinst_LTLIBRARIES = $(component_noinst)
|
|
libmca_sds_portals_utcp_la_SOURCES =$(sources)
|
|
libmca_sds_portals_utcp_la_LDFLAGS = -module -avoid-version $(sds_portals_utcp_LDFLAGS)
|
|
libmca_sds_portals_utcp_la_LIBADD = $(sds_portals_utcp_LIBS)
|