![Josh Hursey](/assets/img/avatar_default.png)
The composite functionality was becoming difficult to maintain, so we removed it for now which simplifies the framework design considerably. Since the 'crmig' and 'autor' components were -very- similar to the 'hnp' component, this commit also merges them together. By moving the 'crmig' and 'autor' to a separate file under the 'hnp' component we are able to isolate the C/R logic to a large extent, thus being only minimally hooked into the previous 'hnp' component. So other than some name changes, the functionality is all still in place. I will update the C/R documentation later this morning. This commit was SVN r23628.
41 строка
976 B
Makefile
41 строка
976 B
Makefile
#
|
|
# Copyright (c) 2010 Cisco Systems, Inc. All rights reserved.
|
|
# $COPYRIGHT$
|
|
#
|
|
# Additional copyrights may follow
|
|
#
|
|
# $HEADER$
|
|
#
|
|
|
|
EXTRA_DIST = .windows
|
|
|
|
dist_pkgdata_DATA = help-orte-errmgr-hnp.txt
|
|
|
|
sources = \
|
|
errmgr_hnp.h \
|
|
errmgr_hnp_component.c \
|
|
errmgr_hnp.c \
|
|
errmgr_hnp_autor.c \
|
|
errmgr_hnp_crmig.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_errmgr_hnp_DSO
|
|
component_noinst =
|
|
component_install = mca_errmgr_hnp.la
|
|
else
|
|
component_noinst = libmca_errmgr_hnp.la
|
|
component_install =
|
|
endif
|
|
|
|
mcacomponentdir = $(pkglibdir)
|
|
mcacomponent_LTLIBRARIES = $(component_install)
|
|
mca_errmgr_hnp_la_SOURCES = $(sources)
|
|
mca_errmgr_hnp_la_LDFLAGS = -module -avoid-version
|
|
|
|
noinst_LTLIBRARIES = $(component_noinst)
|
|
libmca_errmgr_hnp_la_SOURCES =$(sources)
|
|
libmca_errmgr_hnp_la_LDFLAGS = -module -avoid-version
|