1
1
openmpi/ompi/mca/common/ofacm/Makefile.am
Brian Barrett 8b778903d8 Fix longstanding issue with our multi-project support. Rather than using
pkg{data,lib,includedir}, use our own ompi{data,lib,includedir}, which is
always set to {datadir,libdir,includedir}/openmpi.  This will keep us from
having help files in prefix/share/open-rte when building without Open MPI,
but in prefix/share/openmpi when building with Open MPI.

This commit was SVN r30140.
2014-01-07 22:11:15 +00:00

79 строки
1.9 KiB
Makefile

#
# Copyright (c) 2009-2012 Mellanox Technologies. All rights reserved.
# Copyright (c) 2009 Cisco Systems, Inc. All rights reserved.
# Copyright (c) 2009-2012 Oak Ridge National Laboratory. All rights reserved.
# $COPYRIGHT$
#
# Additional copyrights may follow
#
# $HEADER$
#
AM_CPPFLAGS = $(common_ofacm_CPPFLAGS)
dist_ompidata_DATA = \
help-mpi-common-ofacm-base.txt \
help-mpi-common-ofacm-oob.txt
headers = \
base.h \
common_ofacm_oob.h \
common_ofacm_empty.h \
connect.h
sources = \
common_ofacm_base.c \
common_ofacm_oob.c \
common_ofacm_empty.c
# If we have XRC support, build XOOB connection module
if MCA_common_ofacm_have_xrc
sources += \
common_ofacm_xoob.c \
common_ofacm_xoob.h
endif
# See ompi/mca/common/sm/Makefile.am for an explanation of the
# LTLIBRARIES values listed below.
lib_LTLIBRARIES =
noinst_LTLIBRARIES =
comp_inst = libmca_common_ofacm.la
comp_noinst = libmca_common_ofacm_noinst.la
if MCA_BUILD_ompi_common_ofacm_DSO
lib_LTLIBRARIES += $(comp_inst)
else
noinst_LTLIBRARIES += $(comp_noinst)
endif
libmca_common_ofacm_la_SOURCES = $(headers) $(sources)
libmca_common_ofacm_la_CPPFLAGS = $(common_ofacm_CPPFLAGS)
libmca_common_ofacm_la_LDFLAGS = \
-version-info $(libmca_common_ofacm_so_version) \
$(common_ofacm_LDFLAGS)
libmca_common_ofacm_la_LIBADD = $(common_ofacm_LIBS)
libmca_common_ofacm_noinst_la_SOURCES = $(libmca_common_ofacm_la_SOURCES)
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ompidir = $(ompiincludedir)/ompi/mca/common/ofacm
ompi_HEADERS = $(headers)
else
ompidir = $(includedir)
endif
# See ompi/mca/common/sm/Makefile.am for an explanation of the
# the *-local rules, below.
all-local:
if test -z "$(lib_LTLIBRARIES)"; then \
rm -f "$(comp_inst)"; \
$(LN_S) "$(comp_noinst)" "$(comp_inst)"; \
fi
clean-local:
if test -z "$(lib_LTLIBRARIES)"; then \
rm -f "$(comp_inst)"; \
fi