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
|
|
|
|
|
|
|
SUBDIRS = src
|
|
|
|
|
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-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-02-15 01:45:10 +00:00
|
|
|
mca_pcm_rsh_la_SOURCES =
|
2004-07-07 12:45:36 +00:00
|
|
|
mca_pcm_rsh_la_LIBADD = src/libmca_pcm_rsh.la
|
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-03-17 20:45:09 +00:00
|
|
|
libmca_pcm_rsh_la_SOURCES =
|
|
|
|
libmca_pcm_rsh_la_LIBADD = src/libmca_pcm_rsh.la
|
|
|
|
libmca_pcm_rsh_la_LDFLAGS = -module -avoid-version
|