1
1
openmpi/orte/mca/state/tool/Makefile.am
Ralph Castain bf5e314f76 Tools require their own errmgr and state components so they can handle any errors that occur in, for example, communication .
Refs trac:3992

This commit was SVN r29972.

The following Trac tickets were found above:
  Ticket 3992 --> https://svn.open-mpi.org/trac/ompi/ticket/3992
2013-12-19 01:49:33 +00:00

35 строки
842 B
Makefile

#
# Copyright (c) 2013 Intel, Inc. All rights reserved
# $COPYRIGHT$
#
# Additional copyrights may follow
#
# $HEADER$
#
sources = \
state_tool.h \
state_tool_component.c \
state_tool.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 MCA_BUILD_orte_state_tool_DSO
component_noinst =
component_install = mca_state_tool.la
else
component_noinst = libmca_state_tool.la
component_install =
endif
mcacomponentdir = $(pkglibdir)
mcacomponent_LTLIBRARIES = $(component_install)
mca_state_tool_la_SOURCES = $(sources)
mca_state_tool_la_LDFLAGS = -module -avoid-version
noinst_LTLIBRARIES = $(component_noinst)
libmca_state_tool_la_SOURCES =$(sources)
libmca_state_tool_la_LDFLAGS = -module -avoid-version