1
1
openmpi/ompi/mca/mpool/pcie/Makefile.am
Ralph Castain 4d3aa5a8a4 Once again, into the breach!
Yes, friends, our favorite PCIE BTL has resurfaced as mgmt vacillates over its existence. This is an updated version that actually mostly works, in its final stages of debugging.

Some generalization still remains to be done...

This commit was SVN r21358.
2009-06-02 22:26:36 +00:00

58 строки
1.8 KiB
Makefile

#
# Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
# University Research and Technology
# Corporation. All rights reserved.
# Copyright (c) 2004-2005 The University of Tennessee and The University
# of Tennessee Research Foundation. All rights
# reserved.
# Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
# University of Stuttgart. All rights reserved.
# Copyright (c) 2004-2005 The Regents of the University of California.
# All rights reserved.
# Copyright (c) 2007 Los Alamos National Security, LLC. All rights
# reserved.
# $COPYRIGHT$
#
# Additional copyrights may follow
#
# $HEADER$
#
AM_CPPFLAGS = $(mpool_pcie_CPPFLAGS)
sources = \
mpool_pcie.h \
mpool_pcie_component.c \
mpool_pcie_module.c
if WANT_INSTALL_HEADERS
ompidir = $(includedir)/openmpi/ompi/mca/mpool/pcie
ompi_HEADERS = mpool_pcie.h
else
ompidir = $(includedir)
ompi_HEADERS =
endif
# 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 OMPI_BUILD_mpool_pcie_DSO
component_noinst =
component_install = mca_mpool_pcie.la
else
component_noinst = libmca_mpool_pcie.la
component_install =
endif
mcacomponentdir = $(pkglibdir)
mcacomponent_LTLIBRARIES = $(component_install)
mca_mpool_pcie_la_SOURCES = $(sources)
mca_mpool_pcie_la_LDFLAGS = -module -avoid-version
mca_mpool_pcie_la_LIBADD = $(mpool_pcie_LIBS)
noinst_LTLIBRARIES = $(component_noinst)
libmca_mpool_pcie_la_SOURCES = $(sources)
libmca_mpool_pcie_la_LDFLAGS = -module -avoid-version
libmca_mpool_pcie_la_LIBADD = $(mpool_pcie_LIBS)