323e4418b9
- similar to opal/shmem - next step is some refactoring and merge into opal/shmem Developed by Igor, reviewed by AlexM, MikeD This commit fixes trac:4261. This commit was SVN r30855. The following Trac tickets were found above: Ticket 4261 --> https://svn.open-mpi.org/trac/ompi/ticket/4261
30 строки
619 B
Makefile
30 строки
619 B
Makefile
#
|
|
# Copyright (c) 2014 Mellanox Technologies, Inc.
|
|
# All rights reserved.
|
|
# $COPYRIGHT$
|
|
#
|
|
# Additional copyrights may follow
|
|
#
|
|
# $HEADER$
|
|
#
|
|
|
|
# main library setup
|
|
noinst_LTLIBRARIES = libmca_sshmem.la
|
|
libmca_sshmem_la_SOURCES =
|
|
|
|
# local files
|
|
headers = sshmem.h sshmem_types.h
|
|
libmca_sshmem_la_SOURCES += $(headers)
|
|
|
|
# Conditionally install the header files
|
|
if WANT_INSTALL_HEADERS
|
|
oshmemdir = $(ompiincludedir)/$(subdir)
|
|
nobase_oshmem_HEADERS = $(headers)
|
|
nobase_nodist_oshmem_HEADERS = $(nodist_headers)
|
|
endif
|
|
|
|
include base/Makefile.am
|
|
|
|
distclean-local:
|
|
rm -f base/static-components.h
|