1
1
openmpi/oshmem/mca/sshmem/mmap/Makefile.am
Mike Dubman 323e4418b9 OSHMEM: extract memheap allocate methods into separate framework
- 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
2014-02-26 16:32:23 +00:00

35 строки
903 B
Makefile

# Copyright (c) 2014 Mellanox Technologies, Inc.
# All rights reserved.
# $COPYRIGHT$
#
# Additional copyrights may follow
#
# $HEADER$
#
sources = \
sshmem_mmap.h \
sshmem_mmap_component.c \
sshmem_mmap_module.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).
if MCA_BUILD_oshmem_sshmem_mmap_DSO
component_noinst =
component_install = mca_sshmem_mmap.la
else
component_noinst = libmca_sshmem_mmap.la
component_install =
endif
mcacomponentdir = $(ompilibdir)
mcacomponent_LTLIBRARIES = $(component_install)
mca_sshmem_mmap_la_SOURCES = $(sources)
mca_sshmem_mmap_la_LDFLAGS = -module -avoid-version
noinst_LTLIBRARIES = $(component_noinst)
libmca_sshmem_mmap_la_SOURCES =$(sources)
libmca_sshmem_mmap_la_LDFLAGS = -module -avoid-version