![Jeff Squyres](/assets/img/avatar_default.png)
- Remove all the "EXTRA_DIST = VERSION" stanzas from the Makefile.am of components who are not using the VERSION file. This commit was SVN r2001.
33 строки
798 B
Makefile
33 строки
798 B
Makefile
#
|
|
# $HEADER$
|
|
#
|
|
|
|
# Use the top-level Makefile.options
|
|
|
|
include $(top_ompi_srcdir)/config/Makefile.options
|
|
|
|
SUBDIRS = src
|
|
|
|
# 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_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 =
|
|
mca_pcm_rsh_la_LIBADD = src/libmca_pcm_rsh.la
|
|
mca_pcm_rsh_la_LDFLAGS = -module -avoid-version
|
|
|
|
noinst_LTLIBRARIES = $(component_noinst)
|
|
libmca_pcm_rsh_la_SOURCES =
|
|
libmca_pcm_rsh_la_LIBADD = src/libmca_pcm_rsh.la
|
|
libmca_pcm_rsh_la_LDFLAGS = -module -avoid-version
|