![Brian Barrett](/assets/img/avatar_default.png)
configure so that we can be smarter about selection logic (note: we are not yet smarter about selection logic - coming soon). To keep things sane, moved a bunch of files into rms/src/ from rms/. * Since we were already forcing an autogen, move all the files from rsh/src/ to rsh/ for the rsh pcm component. Makes things a bit quicker on the compile, with no real downside NOTE: You will have to run autogen / configure after this update. This commit was SVN r2683.
39 строки
869 B
Makefile
39 строки
869 B
Makefile
#
|
|
# $HEADER$
|
|
#
|
|
|
|
# Use the top-level Makefile.options
|
|
|
|
include $(top_ompi_srcdir)/config/Makefile.options
|
|
|
|
# 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).
|
|
|
|
sources = \
|
|
pcm_rsh.h \
|
|
pcm_rsh_allocate.c \
|
|
pcm_rsh_component.c \
|
|
pcm_rsh_kill.c \
|
|
pcm_rsh_spawn.c
|
|
|
|
|
|
if OMPI_BUILD_pcm_rsh_DSO
|
|
component_noinst =
|
|
component_install = mca_pcm_rsh.la
|
|
else
|
|
component_noinst = libmca_pcm_rsh.la
|
|
component_install =
|
|
endif
|
|
|
|
mcacomponentdir = $(libdir)/openmpi
|
|
mcacomponent_LTLIBRARIES = $(component_install)
|
|
mca_pcm_rsh_la_SOURCES = $(sources)
|
|
mca_pcm_rsh_la_LIBADD =
|
|
mca_pcm_rsh_la_LDFLAGS = -module -avoid-version
|
|
|
|
noinst_LTLIBRARIES = $(component_noinst)
|
|
libmca_pcm_rsh_la_SOURCES = $(sources)
|
|
libmca_pcm_rsh_la_LIBADD =
|
|
libmca_pcm_rsh_la_LDFLAGS = -module -avoid-version
|