303e3a1d39
This commit was SVN r21350.
38 строки
952 B
Makefile
38 строки
952 B
Makefile
#
|
|
# Copyright (c) 2009 Cisco Systems, Inc. All rights reserved.
|
|
#
|
|
# $COPYRIGHT$
|
|
#
|
|
# Additional copyrights may follow
|
|
#
|
|
# $HEADER$
|
|
#
|
|
|
|
dist_pkgdata_DATA = help-orte-rmaps-resilient.txt
|
|
|
|
sources = \
|
|
rmaps_resilient.c \
|
|
rmaps_resilient.h \
|
|
rmaps_resilient_component.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_rmaps_resilient_DSO
|
|
component_noinst =
|
|
component_install = mca_rmaps_resilient.la
|
|
else
|
|
component_noinst = libmca_rmaps_resilient.la
|
|
component_install =
|
|
endif
|
|
|
|
mcacomponentdir = $(pkglibdir)
|
|
mcacomponent_LTLIBRARIES = $(component_install)
|
|
mca_rmaps_resilient_la_SOURCES = $(sources)
|
|
mca_rmaps_resilient_la_LDFLAGS = -module -avoid-version
|
|
|
|
noinst_LTLIBRARIES = $(component_noinst)
|
|
libmca_rmaps_resilient_la_SOURCES =$(sources)
|
|
libmca_rmaps_resilient_la_LDFLAGS = -module -avoid-version
|