1
1
openmpi/ompi/mpi/tool/Makefile.am
Nathan Hjelm 2da64eb719 Fix compilation of the MPI tools information interface when profiling
is enabled and fix a bug in the handling of watermark performance
variables.

cmr=v1.7.3:ticket=trac:3725:reviewer=jsquyres

This commit was SVN r29068.

The following Trac tickets were found above:
  Ticket 3725 --> https://svn.open-mpi.org/trac/ompi/ticket/3725
2013-08-27 18:19:18 +00:00

48 строки
1.6 KiB
Makefile

#
# Copyright (c) 2004-2006 The University of Tennessee and The University
# of Tennessee Research Foundation. All rights
# reserved.
# Copyright (c) 2004-2006 High Performance Computing Center Stuttgart,
# University of Stuttgart. All rights reserved.
# Copyright (c) 2012-2013 Los Alamos National Security, LLC. All rights
# reserved.
# $COPYRIGHT$
#
# Additional copyrights may follow
#
# $HEADER$
#
SUBDIRS = profile
AM_CPPFLAGS = -DOMPI_PROFILING_DEFINES=0
noinst_LTLIBRARIES = libmpi_mpit_common.la
if BUILD_MPI_BINDINGS_LAYER
noinst_LTLIBRARIES += libmpi_mpit.la
endif
headers = mpit-internal.h
libmpi_mpit_common_la_SOURCES = mpit_common.c
libmpi_mpit_la_SOURCES = init_thread.c finalize.c cvar_get_num.c \
cvar_get_info.c cvar_read.c cvar_write.c \
cvar_handle_alloc.c cvar_handle_free.c \
category_get_num.c category_get_info.c \
category_get_cvars.c category_get_pvars.c \
category_get_categories.c category_changed.c \
pvar_get_info.c pvar_get_num.c pvar_handle_alloc.c \
pvar_handle_free.c pvar_read.c pvar_readreset.c \
pvar_reset.c pvar_session_create.c pvar_session_free.c \
pvar_start.c pvar_stop.c pvar_write.c \
enum_get_info.c enum_get_item.c
# Conditionally install the header files
if WANT_INSTALL_HEADERS
ompidir = $(includedir)/openmpi/$(subdir)
ompi_HEADERS = $(headers)
endif