8b778903d8
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.
39 строки
1.1 KiB
Makefile
39 строки
1.1 KiB
Makefile
# -*- shell-script -*-
|
|
#
|
|
#
|
|
# Copyright (c) 2013 Mellanox Technologies, Inc.
|
|
# All rights reserved.
|
|
# $COPYRIGHT$
|
|
#
|
|
# Additional copyrights may follow
|
|
#
|
|
# $HEADER$
|
|
#
|
|
#
|
|
AM_CPPFLAGS = $(coll_fca_CPPFLAGS) -DCOLL_FCA_HOME=\"$(coll_fca_HOME)\" $(coll_fca_extra_CPPFLAGS)
|
|
scoll_fca_sources = \
|
|
scoll_fca.h \
|
|
scoll_fca_debug.h \
|
|
scoll_fca_api.h \
|
|
scoll_fca_module.c \
|
|
scoll_fca_component.c \
|
|
scoll_fca_ops.c
|
|
if MCA_BUILD_oshmem_scoll_fca_DSO
|
|
component_noinst =
|
|
component_install = mca_scoll_fca.la
|
|
else
|
|
component_noinst = libmca_scoll_fca.la
|
|
component_install =
|
|
endif
|
|
|
|
mcacomponentdir = $(ompilibdir)
|
|
mcacomponent_LTLIBRARIES = $(component_install)
|
|
mca_scoll_fca_la_SOURCES = $(scoll_fca_sources)
|
|
mca_scoll_fca_la_LIBADD = $(scoll_fca_LIBS)
|
|
mca_scoll_fca_la_LDFLAGS = -module -avoid-version $(scoll_fca_LDFLAGS)
|
|
|
|
noinst_LTLIBRARIES = $(component_noinst)
|
|
libmca_scoll_fca_la_SOURCES =$(scoll_fca_sources)
|
|
libmca_scoll_fca_la_LIBADD = $(scoll_fca_LIBS)
|
|
libmca_scoll_fca_la_LDFLAGS = -module -avoid-version $(scoll_fca_LDFLAGS)
|