# # Copyright (c) 2011 Cisco Systems, Inc. All rights reserved. # Copyright (c) 2013 Los Alamos National Security, LLC. # All rights reserved. # Copyright (c) 2014-2018 Intel, Inc. All rights reserved. # Copyright (c) 2017 IBM Corporation. All rights reserved. # $COPYRIGHT$ # # Additional copyrights may follow # # $HEADER$ # # Add MPIR unwind flags because files in this tree are # involved in startup. This is not needed in the other # subdirs in orte/mca/ess because the other components are # solely used by daemons and thus are not accessible by the debugger. AM_CFLAGS = $(MPIR_UNWIND_CFLAGS) AM_CPPFLAGS = $(ess_pmi_CPPFLAGS) sources = \ ess_pmi.h \ ess_pmi_component.c \ ess_pmi_module.c # Make the output library in this directory, and name it either # mca__.la (for DSO builds) or libmca__.la # (for static builds). if MCA_BUILD_orte_ess_pmi_DSO component_noinst = component_install = mca_ess_pmi.la else component_noinst = libmca_ess_pmi.la component_install = endif mcacomponentdir = $(ortelibdir) mcacomponent_LTLIBRARIES = $(component_install) mca_ess_pmi_la_SOURCES = $(sources) mca_ess_pmi_la_LDFLAGS = -module -avoid-version $(ess_pmi_LDFLAGS) mca_ess_pmi_la_LIBADD = $(top_builddir)/orte/lib@ORTE_LIB_PREFIX@open-rte.la \ $(ess_pmi_LIBS) noinst_LTLIBRARIES = $(component_noinst) libmca_ess_pmi_la_SOURCES =$(sources) libmca_ess_pmi_la_LDFLAGS = -module -avoid-version $(ess_pmi_LDFLAGS) libmca_ess_pmi_la_LIBADD = $(ess_pmi_LIBS)