2004-02-15 01:45:10 +00:00
|
|
|
#
|
2004-11-22 01:38:40 +00:00
|
|
|
# Copyright (c) 2004-2005 The Trustees of Indiana University.
|
|
|
|
# All rights reserved.
|
|
|
|
# Copyright (c) 2004-2005 The Trustees of the University of Tennessee.
|
|
|
|
# All rights reserved.
|
2004-11-28 20:09:25 +00:00
|
|
|
# Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
# University of Stuttgart. All rights reserved.
|
2004-11-22 01:38:40 +00:00
|
|
|
# $COPYRIGHT$
|
|
|
|
#
|
|
|
|
# Additional copyrights may follow
|
|
|
|
#
|
2004-02-15 01:45:10 +00:00
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
2004-07-01 16:25:44 +00:00
|
|
|
# Use the top-level Makefile.options
|
2004-02-15 01:45:10 +00:00
|
|
|
|
2004-06-07 15:33:53 +00:00
|
|
|
include $(top_ompi_srcdir)/config/Makefile.options
|
2004-02-15 01:45:10 +00:00
|
|
|
|
2004-07-01 16:25:44 +00:00
|
|
|
# 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).
|
2004-02-15 01:45:10 +00:00
|
|
|
|
2004-10-13 23:11:19 +00:00
|
|
|
EXTRA_DIST = $(pkgdata_DATA)
|
|
|
|
|
|
|
|
pkgdata_DATA = help-mca-pcm-rsh.txt
|
|
|
|
|
2004-09-15 19:23:59 +00:00
|
|
|
sources = \
|
|
|
|
pcm_rsh.h \
|
|
|
|
pcm_rsh_allocate.c \
|
|
|
|
pcm_rsh_component.c \
|
2004-10-14 23:37:42 +00:00
|
|
|
pcm_rsh_ioexecvp.c \
|
2004-09-15 19:23:59 +00:00
|
|
|
pcm_rsh_kill.c \
|
|
|
|
pcm_rsh_spawn.c
|
|
|
|
|
|
|
|
|
2004-07-01 16:25:44 +00:00
|
|
|
if OMPI_BUILD_pcm_rsh_DSO
|
|
|
|
component_noinst =
|
|
|
|
component_install = mca_pcm_rsh.la
|
2004-02-15 01:45:10 +00:00
|
|
|
else
|
2004-07-01 16:25:44 +00:00
|
|
|
component_noinst = libmca_pcm_rsh.la
|
|
|
|
component_install =
|
2004-02-15 01:45:10 +00:00
|
|
|
endif
|
|
|
|
|
2004-07-01 16:25:44 +00:00
|
|
|
mcacomponentdir = $(libdir)/openmpi
|
|
|
|
mcacomponent_LTLIBRARIES = $(component_install)
|
2004-09-15 19:23:59 +00:00
|
|
|
mca_pcm_rsh_la_SOURCES = $(sources)
|
|
|
|
mca_pcm_rsh_la_LIBADD =
|
2004-02-15 01:45:10 +00:00
|
|
|
mca_pcm_rsh_la_LDFLAGS = -module -avoid-version
|
|
|
|
|
2004-07-01 16:25:44 +00:00
|
|
|
noinst_LTLIBRARIES = $(component_noinst)
|
2004-09-15 19:23:59 +00:00
|
|
|
libmca_pcm_rsh_la_SOURCES = $(sources)
|
|
|
|
libmca_pcm_rsh_la_LIBADD =
|
2004-03-17 20:45:09 +00:00
|
|
|
libmca_pcm_rsh_la_LDFLAGS = -module -avoid-version
|