2013-09-10 15:34:09 +00:00
|
|
|
#
|
|
|
|
# Copyright (c) 2013 Mellanox Technologies, Inc.
|
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
# $COPYRIGHT$
|
2015-06-23 20:59:57 -07:00
|
|
|
#
|
2013-09-10 15:34:09 +00:00
|
|
|
# Additional copyrights may follow
|
2015-06-23 20:59:57 -07:00
|
|
|
#
|
2013-09-10 15:34:09 +00:00
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
2014-05-08 14:32:24 +00:00
|
|
|
dist_oshmemdata_DATA = \
|
2014-05-14 13:45:16 +00:00
|
|
|
help-oshmem-spml-ikrit.txt
|
2013-09-10 15:34:09 +00:00
|
|
|
|
|
|
|
AM_CPPFLAGS = $(spml_ikrit_CPPFLAGS)
|
|
|
|
|
|
|
|
ikrit_sources = \
|
|
|
|
spml_ikrit.c \
|
|
|
|
spml_ikrit.h \
|
|
|
|
spml_ikrit_component.c \
|
2015-06-23 20:59:57 -07:00
|
|
|
spml_ikrit_component.h
|
|
|
|
|
2013-09-10 15:34:09 +00:00
|
|
|
if MCA_BUILD_oshmem_spml_ikrit_DSO
|
|
|
|
component_noinst =
|
2015-06-23 20:59:57 -07:00
|
|
|
component_install = mca_spml_ikrit.la
|
2013-09-10 15:34:09 +00:00
|
|
|
else
|
|
|
|
component_noinst = libmca_spml_ikrit.la
|
|
|
|
component_install =
|
|
|
|
endif
|
|
|
|
|
2014-05-08 02:01:35 +00:00
|
|
|
mcacomponentdir = $(oshmemlibdir)
|
2013-09-10 15:34:09 +00:00
|
|
|
mcacomponent_LTLIBRARIES = $(component_install)
|
|
|
|
mca_spml_ikrit_la_SOURCES = $(ikrit_sources)
|
|
|
|
mca_spml_ikrit_la_LIBADD = $(spml_ikrit_LIBS)
|
|
|
|
mca_spml_ikrit_la_LDFLAGS = -module -avoid-version $(spml_ikrit_LDFLAGS)
|
|
|
|
|
|
|
|
noinst_LTLIBRARIES = $(component_noinst)
|
|
|
|
libmca_spml_ikrit_la_SOURCES = $(ikrit_sources)
|
|
|
|
libmca_spml_ikrit_la_LIBADD = $(spml_ikrit_LIBS)
|
|
|
|
libmca_spml_ikrit_la_LDFLAGS = -module -avoid-version $(spml_ikrit_LDFLAGS)
|
|
|
|
|