2010-08-02 15:25:53 +04:00
|
|
|
# -*- shell-script -*-
|
|
|
|
#
|
|
|
|
#
|
2011-05-16 18:43:11 +04:00
|
|
|
# Copyright (c) 2011 Mellanox Technologies. All rights reserved.
|
2010-08-02 15:25:53 +04:00
|
|
|
# $COPYRIGHT$
|
|
|
|
#
|
|
|
|
# Additional copyrights may follow
|
|
|
|
#
|
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
#
|
|
|
|
|
2010-08-08 17:28:41 +04:00
|
|
|
AM_CPPFLAGS = $(coll_fca_CPPFLAGS) -DCOLL_FCA_HOME=\"$(coll_fca_HOME)\" -I$(coll_fca_HOME)/include/fca -I$(coll_fca_HOME)/include/fca_core
|
2010-08-02 15:25:53 +04:00
|
|
|
|
|
|
|
#dist_pkgdata_DATA = help-coll-fca.txt
|
|
|
|
coll_fca_sources = \
|
|
|
|
coll_fca.h \
|
|
|
|
coll_fca_debug.h \
|
2011-01-01 17:11:49 +03:00
|
|
|
coll_fca_api.h \
|
2011-05-16 18:43:11 +04:00
|
|
|
coll_fca_convertor.h \
|
2010-08-02 15:25:53 +04:00
|
|
|
coll_fca_module.c \
|
|
|
|
coll_fca_component.c \
|
|
|
|
coll_fca_ops.c
|
|
|
|
|
|
|
|
# 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).
|
|
|
|
|
2010-09-20 10:27:43 +04:00
|
|
|
if MCA_BUILD_ompi_coll_fca_DSO
|
2010-08-02 15:25:53 +04:00
|
|
|
component_noinst =
|
|
|
|
component_install = mca_coll_fca.la
|
|
|
|
else
|
|
|
|
component_noinst = libmca_coll_fca.la
|
|
|
|
component_install =
|
|
|
|
endif
|
|
|
|
|
|
|
|
mcacomponentdir = $(pkglibdir)
|
|
|
|
mcacomponent_LTLIBRARIES = $(component_install)
|
|
|
|
mca_coll_fca_la_SOURCES = $(coll_fca_sources)
|
2012-11-02 21:30:00 +04:00
|
|
|
mca_coll_fca_la_LIBADD = $(coll_fca_LIBS)
|
2010-08-02 15:25:53 +04:00
|
|
|
mca_coll_fca_la_LDFLAGS = -module -avoid-version $(coll_fca_LDFLAGS)
|
|
|
|
|
|
|
|
noinst_LTLIBRARIES = $(component_noinst)
|
|
|
|
libmca_coll_fca_la_SOURCES =$(coll_fca_sources)
|
2012-11-02 21:30:00 +04:00
|
|
|
libmca_coll_fca_la_LIBADD = $(coll_fca_LIBS)
|
2010-08-02 15:25:53 +04:00
|
|
|
libmca_coll_fca_la_LDFLAGS = -module -avoid-version $(coll_fca_LDFLAGS)
|