c34ba88b22
* Use the proper lib prefix name * Use the proper extra LDFLAGS Signed-off-by: Jeff Squyres <jsquyres@cisco.com>
38 строки
1.4 KiB
Makefile
38 строки
1.4 KiB
Makefile
#
|
|
# Copyright (c) 2013-2015 The University of Tennessee and The University
|
|
# of Tennessee Research Foundation. All rights
|
|
# reserved.
|
|
# Copyright (c) 2013-2015 Inria. All rights reserved.
|
|
# Copyright (c) 2015 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
|
|
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_PREFIX@open-pal.la
|
|
|
|
if MCA_BUILD_ompi_pml_monitoring_DSO
|
|
lib_LTLIBRARIES = ompi_monitoring_prof.la
|
|
ompi_monitoring_prof_la_SOURCES = monitoring_prof.c
|
|
ompi_monitoring_prof_la_LDFLAGS= \
|
|
-module -avoid-version -shared $(WRAPPER_EXTRA_LDFLAGS)
|
|
ompi_monitoring_prof_la_LIBADD = \
|
|
$(top_builddir)/ompi/lib@OMPI_LIBMPI_NAME@.la \
|
|
$(top_builddir)/opal/lib@OPAL_LIB_PREFIX@open-pal.la
|
|
endif # MCA_BUILD_ompi_pml_monitoring_DSO
|
|
|
|
endif # PROJECT_OMPI
|