2004-09-09 01:21:14 +04:00
|
|
|
#
|
2005-11-05 22:57:48 +03: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.
|
2004-11-28 23:09:25 +03:00
|
|
|
# Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
# University of Stuttgart. All rights reserved.
|
2005-03-24 15:43:37 +03:00
|
|
|
# Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
# All rights reserved.
|
2004-11-22 04:38:40 +03:00
|
|
|
# $COPYRIGHT$
|
|
|
|
#
|
|
|
|
# Additional copyrights may follow
|
|
|
|
#
|
2004-09-09 01:21:14 +04:00
|
|
|
# $HEADER$
|
|
|
|
#
|
|
|
|
|
2007-07-10 16:43:05 +04:00
|
|
|
AM_CPPFLAGS = $(pls_lsf_CPPFLAGS)
|
2004-09-09 01:21:14 +04:00
|
|
|
|
2007-07-10 16:43:05 +04:00
|
|
|
dist_pkgdata_DATA = help-pls-lsf.txt
|
2005-09-07 09:54:53 +04:00
|
|
|
|
2007-07-10 16:43:05 +04:00
|
|
|
sources = \
|
|
|
|
pls_lsf.h \
|
|
|
|
pls_lsf_component.c \
|
|
|
|
pls_lsf_module.c
|
2004-09-09 01:21:14 +04:00
|
|
|
|
|
|
|
# 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).
|
|
|
|
|
2007-07-10 16:43:05 +04:00
|
|
|
if OMPI_BUILD_pls_lsf_DSO
|
|
|
|
lib =
|
|
|
|
lib_sources =
|
|
|
|
component = mca_pls_lsf.la
|
|
|
|
component_sources = $(sources)
|
2004-09-09 01:21:14 +04:00
|
|
|
else
|
2007-07-10 16:43:05 +04:00
|
|
|
lib = libmca_pls_lsf.la
|
|
|
|
lib_sources = $(sources)
|
|
|
|
component =
|
|
|
|
component_sources =
|
2004-09-09 01:21:14 +04:00
|
|
|
endif
|
|
|
|
|
2007-04-12 15:19:42 +04:00
|
|
|
mcacomponentdir = $(pkglibdir)
|
2007-07-10 16:43:05 +04:00
|
|
|
mcacomponent_LTLIBRARIES = $(component)
|
|
|
|
mca_pls_lsf_la_SOURCES = $(component_sources)
|
|
|
|
mca_pls_lsf_la_LDFLAGS = -module -avoid-version $(pls_lsf_LDFLAGS)
|
|
|
|
mca_pls_lsf_la_LIBADD = \
|
|
|
|
$(pls_lsf_LIBS) \
|
2006-12-05 21:27:24 +03:00
|
|
|
$(top_ompi_builddir)/orte/libopen-rte.la \
|
|
|
|
$(top_ompi_builddir)/opal/libopen-pal.la
|
2004-09-09 01:21:14 +04:00
|
|
|
|
2007-07-10 16:43:05 +04:00
|
|
|
noinst_LTLIBRARIES = $(lib)
|
|
|
|
libmca_pls_lsf_la_SOURCES = $(lib_sources)
|
|
|
|
libmca_pls_lsf_la_LDFLAGS = -module -avoid-version $(pls_lsf_LDFLAGS)
|
|
|
|
libmca_pls_lsf_la_LIBADD = $(pls_lsf_LIBS)
|