
Note that each of these components will only be selected if specifically requested - otherwise, a "NULL" component will be used. The framework is only opened by the HNP and orteds, though neither is currently coded to save/restore state This commit was SVN r22839.
35 строки
851 B
Makefile
35 строки
851 B
Makefile
#
|
|
# Copyright (c) 2010 Cisco Systems, Inc. All rights reserved.
|
|
# $COPYRIGHT$
|
|
#
|
|
# Additional copyrights may follow
|
|
#
|
|
# $HEADER$
|
|
#
|
|
|
|
sources = \
|
|
state_dbm.h \
|
|
state_dbm_component.c \
|
|
state_dbm.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_state_dbm_DSO
|
|
component_noinst =
|
|
component_install = mca_state_dbm.la
|
|
else
|
|
component_noinst = libmca_state_dbm.la
|
|
component_install =
|
|
endif
|
|
|
|
mcacomponentdir = $(pkglibdir)
|
|
mcacomponent_LTLIBRARIES = $(component_install)
|
|
mca_state_dbm_la_SOURCES = $(sources)
|
|
mca_state_dbm_la_LDFLAGS = -module -avoid-version -ldbm
|
|
|
|
noinst_LTLIBRARIES = $(component_noinst)
|
|
libmca_state_dbm_la_SOURCES =$(sources)
|
|
libmca_state_dbm_la_LDFLAGS = -module -avoid-version -ldbm
|