38 строки
849 B
Makefile
38 строки
849 B
Makefile
|
#
|
||
|
# $HEADER$
|
||
|
#
|
||
|
|
||
|
# Use the top-level OpenMPI Makefile.options
|
||
|
|
||
|
include $(top_ompi_srcdir)/config/Makefile.options
|
||
|
|
||
|
SUBDIRS = src
|
||
|
|
||
|
EXTRA_DIST = VERSION
|
||
|
|
||
|
# According to the MCA spec, we have to make the output library here
|
||
|
# in the top-level directory, and it has to be named
|
||
|
# libompi_ssi_coll_ompi_basic.la
|
||
|
|
||
|
if OMPI_BUILD_ptl_prof_DSO
|
||
|
module_noinst =
|
||
|
module_install = mca_ptl_prof.la
|
||
|
else
|
||
|
module_noinst = libmca_ptl_prof.la
|
||
|
module_install =
|
||
|
endif
|
||
|
|
||
|
mcamoduledir = $(libdir)/ompi
|
||
|
mcamodule_LTLIBRARIES = $(module_install)
|
||
|
mca_ptl_prof_la_SOURCES =
|
||
|
mca_ptl_prof_la_LIBADD = \
|
||
|
src/libmca_ptl_prof.la \
|
||
|
$(LIBOMPI_LA)
|
||
|
mca_ptl_prof_la_LDFLAGS = -module -avoid-version
|
||
|
|
||
|
noinst_LTLIBRARIES = $(module_noinst)
|
||
|
libmca_ptl_prof_la_SOURCES =
|
||
|
libmca_ptl_prof_la_LIBADD = src/libmca_ptl_prof.la
|
||
|
libmca_ptl_prof_la_LDFLAGS = -module -avoid-version
|
||
|
|