1
1
openmpi/orte/mca/plm/alps/Makefile.am
Howard Pritchard 9548b8a9e8 plm/alps: add wlm detect infrastructure
Signed-off-by: Howard Pritchard <howardp@lanl.gov>
2015-12-07 07:43:20 -08:00

54 строки
1.9 KiB
Makefile

#
# 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.
# Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
# University of Stuttgart. All rights reserved.
# Copyright (c) 2004-2005 The Regents of the University of California.
# All rights reserved.
# Copyright (c) 2008-2010 Cisco Systems, Inc. All rights reserved.
# Copyright (c) 2015 Los Alamos National Security, LLC. All rights
# reserved.
# $COPYRIGHT$
#
# Additional copyrights may follow
#
# $HEADER$
#
sources = \
plm_alps.h \
plm_alps_component.c \
plm_alps_module.c
dist_ortedata_DATA = help-plm-alps.txt
# 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_plm_alps_DSO
component_noinst =
component_install = mca_plm_alps.la
else
component_noinst = libmca_plm_alps.la
component_install =
endif
mcacomponentdir = $(ortelibdir)
mcacomponent_LTLIBRARIES = $(component_install)
mca_plm_alps_la_SOURCES = $(sources)
mca_plm_alps_la_CPPFLAGS = $(plm_alps_CPPFLAGS)
mca_plm_alps_la_LDFLAGS = -module -avoid-version $(plm_alps_LDFLAGS)
mca_plm_alps_la_LIBADD = $(plm_alps_LIBS) \
$(ORTE_TOP_BUILDDIR)/orte/mca/common/alps/lib@ORTE_LIB_PREFIX@mca_common_alps.la
noinst_LTLIBRARIES = $(component_noinst)
libmca_plm_alps_la_SOURCES =$(sources)
libmca_plm_alps_la_CPPFLAGS = $(plm_alps_CPPFLAGS)
libmca_plm_alps_la_LDFLAGS = -module -avoid-version $(plm_alps_LDFLAGS)
libmca_plm_alps_la_LIBADD = $(plm_alps_LIBS)