2012-08-03 20:30:05 +04:00
|
|
|
#
|
|
|
|
# Copyright (c) 2011-2012 Los Alamos National Security, LLC.
|
|
|
|
# All rights reserved.
|
2017-08-23 00:28:23 +03:00
|
|
|
# Copyright (c) 2017 IBM Corporation. All rights reserved.
|
2012-08-03 20:30:05 +04:00
|
|
|
# $COPYRIGHT$
|
2015-06-24 06:59:57 +03:00
|
|
|
#
|
2012-08-03 20:30:05 +04:00
|
|
|
# Additional copyrights may follow
|
2015-06-24 06:59:57 +03:00
|
|
|
#
|
2012-08-03 20:30:05 +04:00
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
|
|
|
sources = \
|
|
|
|
state_novm.h \
|
|
|
|
state_novm_component.c \
|
|
|
|
state_novm.c
|
|
|
|
|
|
|
|
# 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 MCA_BUILD_orte_state_novm_DSO
|
|
|
|
component_noinst =
|
|
|
|
component_install = mca_state_novm.la
|
|
|
|
else
|
|
|
|
component_noinst = libmca_state_novm.la
|
|
|
|
component_install =
|
|
|
|
endif
|
|
|
|
|
2014-05-08 06:01:35 +04:00
|
|
|
mcacomponentdir = $(ortelibdir)
|
2012-08-03 20:30:05 +04:00
|
|
|
mcacomponent_LTLIBRARIES = $(component_install)
|
|
|
|
mca_state_novm_la_SOURCES = $(sources)
|
|
|
|
mca_state_novm_la_LDFLAGS = -module -avoid-version
|
2017-08-23 00:28:23 +03:00
|
|
|
mca_state_novm_la_LIBADD = $(top_builddir)/orte/lib@ORTE_LIB_PREFIX@open-rte.la
|
2012-08-03 20:30:05 +04:00
|
|
|
|
|
|
|
noinst_LTLIBRARIES = $(component_noinst)
|
|
|
|
libmca_state_novm_la_SOURCES =$(sources)
|
|
|
|
libmca_state_novm_la_LDFLAGS = -module -avoid-version
|