1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
#
# Copyright (c) 2013-2017 The University of Tennessee and The University
# of Tennessee Research Foundation. All rights
# reserved.
# Copyright (c) 2013-2017 Inria. All rights reserved.
# Copyright (c) 2015-2017 Research Organization for Information Science
# and Technology (RIST). All rights reserved.
# Copyright (c) 2016 IBM Corporation. All rights reserved.
# Copyright (c) 2016 Cisco Systems, Inc. All rights reserved.
# $COPYRIGHT$
#
# Additional copyrights may follow
#
# $HEADER$
#
# This test requires multiple processes to run. Don't run it as part
# of 'make check'
if PROJECT_OMPI
noinst_PROGRAMS = monitoring_test test_pvar_access test_overhead check_monitoring example_reduce_count
monitoring_test_SOURCES = monitoring_test.c
monitoring_test_LDFLAGS = $(OMPI_PKG_CONFIG_LDFLAGS)
monitoring_test_LDADD = \
$(top_builddir)/ompi/lib@OMPI_LIBMPI_NAME@.la \
$(top_builddir)/opal/lib@OPAL_LIB_NAME@.la
test_pvar_access_SOURCES = test_pvar_access.c
test_pvar_access_LDFLAGS = $(OMPI_PKG_CONFIG_LDFLAGS)
test_pvar_access_LDADD = \
$(top_builddir)/ompi/lib@OMPI_LIBMPI_NAME@.la \
$(top_builddir)/opal/lib@OPAL_LIB_NAME@.la
test_overhead_SOURCES = test_overhead.c
test_overhead_LDFLAGS = $(OMPI_PKG_CONFIG_LDFLAGS)
test_overhead_LDADD = \
$(top_builddir)/ompi/lib@OMPI_LIBMPI_NAME@.la \
$(top_builddir)/opal/lib@OPAL_LIB_NAME@.la
check_monitoring_SOURCES = check_monitoring.c
check_monitoring_LDFLAGS = $(OMPI_PKG_CONFIG_LDFLAGS)
check_monitoring_LDADD = \
$(top_builddir)/ompi/lib@OMPI_LIBMPI_NAME@.la \
$(top_builddir)/opal/lib@OPAL_LIB_NAME@.la
example_reduce_count_SOURCES = example_reduce_count.c
example_reduce_count_LDFLAGS = $(OMPI_PKG_CONFIG_LDFLAGS)
example_reduce_count_LDADD = \
$(top_builddir)/ompi/lib@OMPI_LIBMPI_NAME@.la \
$(top_builddir)/opal/lib@OPAL_LIB_NAME@.la
endif # PROJECT_OMPI
distclean-local:
rm -rf *.dSYM .deps .libs *.la *.lo monitoring_test test_pvar_access test_overhead check_monitoring example_reduce_count prof *.log *.o *.trs Makefile
|