2006-09-21 04:08:49 +04:00
|
|
|
#
|
|
|
|
# Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
|
|
|
|
# University Research and Technology
|
|
|
|
# Corporation. All rights reserved.
|
|
|
|
# Copyright (c) 2004-2005 The University of Tennessee and The University
|
|
|
|
# of Tennessee Research Foundation. All rights
|
|
|
|
# reserved.
|
2015-06-24 06:59:57 +03:00
|
|
|
# Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
2006-09-21 04:08:49 +04:00
|
|
|
# University of Stuttgart. All rights reserved.
|
|
|
|
# Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
# All rights reserved.
|
2010-09-18 03:04:06 +04:00
|
|
|
# Copyright (c) 2010 Cisco Systems, Inc. All rights reserved.
|
2006-09-21 04:08:49 +04:00
|
|
|
# $COPYRIGHT$
|
2015-06-24 06:59:57 +03:00
|
|
|
#
|
2006-09-21 04:08:49 +04:00
|
|
|
# Additional copyrights may follow
|
2015-06-24 06:59:57 +03:00
|
|
|
#
|
2006-09-21 04:08:49 +04:00
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
|
|
|
AM_CPPFLAGS = $(ras_loadleveler_CPPFLAGS)
|
|
|
|
|
|
|
|
sources = \
|
|
|
|
ras_loadleveler.h \
|
|
|
|
ras_loadleveler_component.c \
|
|
|
|
ras_loadleveler_module.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).
|
|
|
|
|
2010-09-18 03:04:06 +04:00
|
|
|
if MCA_BUILD_orte_ras_loadleveler_DSO
|
2006-09-21 04:08:49 +04:00
|
|
|
lib =
|
2015-06-24 06:59:57 +03:00
|
|
|
lib_sources =
|
2006-09-21 04:08:49 +04:00
|
|
|
component = mca_ras_loadleveler.la
|
|
|
|
component_sources = $(sources)
|
|
|
|
else
|
|
|
|
lib = libmca_ras_loadleveler.la
|
|
|
|
lib_sources = $(sources)
|
|
|
|
component =
|
|
|
|
component_sources =
|
|
|
|
endif
|
|
|
|
|
2014-05-08 06:01:35 +04:00
|
|
|
mcacomponentdir = $(ortelibdir)
|
2006-09-21 04:08:49 +04:00
|
|
|
mcacomponent_LTLIBRARIES = $(component)
|
|
|
|
mca_ras_loadleveler_la_SOURCES = $(component_sources)
|
|
|
|
mca_ras_loadleveler_la_LDFLAGS = -module -avoid-version $(ras_loadleveler_LDFLAGS)
|
2007-12-15 16:32:02 +03:00
|
|
|
mca_ras_loadleveler_la_LIBADD = $(ras_loadleveler_LIBS)
|
2006-09-21 04:08:49 +04:00
|
|
|
|
|
|
|
noinst_LTLIBRARIES = $(lib)
|
|
|
|
libmca_ras_loadleveler_la_SOURCES = $(lib_sources)
|
|
|
|
libmca_ras_loadleveler_la_LDFLAGS = -module -avoid-version $(ras_loadleveler_LDFLAGS)
|
|
|
|
libmca_ras_loadleveler_la_LIBADD = $(ras_loadleveler_LIBS)
|