![Ralph Castain](/assets/img/avatar_default.png)
Update ompi_info and orte-info to include the new framework. Fix some selection logic and a typo'd variable name Still remains ompi_ignored until we complete testing This commit was SVN r22848.
39 строки
1.0 KiB
Makefile
39 строки
1.0 KiB
Makefile
#
|
|
# Copyright (c) 2010 Cisco Systems, Inc. All rights reserved.
|
|
# $COPYRIGHT$
|
|
#
|
|
# Additional copyrights may follow
|
|
#
|
|
# $HEADER$
|
|
#
|
|
|
|
sources = \
|
|
state_db.h \
|
|
state_db_component.c \
|
|
state_db.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_db_DSO
|
|
component_noinst =
|
|
component_install = mca_state_db.la
|
|
else
|
|
component_noinst = libmca_state_db.la
|
|
component_install =
|
|
endif
|
|
|
|
mcacomponentdir = $(pkglibdir)
|
|
mcacomponent_LTLIBRARIES = $(component_install)
|
|
mca_state_db_la_CPPFLAGS = $(state_db_CPPFLAGS)
|
|
mca_state_db_la_SOURCES = $(sources)
|
|
mca_state_db_la_LDFLAGS = -module -avoid-version $(state_db_LDFLAGS)
|
|
mca_state_db_la_LIBADD = $(state_db_LIBS)
|
|
|
|
noinst_LTLIBRARIES = $(component_noinst)
|
|
libmca_state_db_la_CPPFLAGS = $(state_db_CPPFLAGS)
|
|
libmca_state_db_la_SOURCES =$(sources)
|
|
libmca_state_db_la_LDFLAGS = -module -avoid-version $(state_db_LDFLAGS)
|
|
libmca_state_db_la_LIBADD = $(state_db_LIBS)
|