a1bf04f39e
First cut at adding support for LSF Lots of ompi_ignores so only Jeff and I will see this stuff This commit was SVN r15321.
56 строки
1.8 KiB
Makefile
56 строки
1.8 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$
|
|
#
|
|
# Additional copyrights may follow
|
|
#
|
|
# $HEADER$
|
|
#
|
|
|
|
# Use the top-level Makefile.options
|
|
|
|
dist_pkgdata_DATA = help-ras-bproc-raw.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 OMPI_BUILD_ras_bproc_raw_DSO
|
|
component_noinst =
|
|
component_install = mca_ras_bproc_raw.la
|
|
else
|
|
component_noinst = libmca_ras_bproc_raw.la
|
|
component_install =
|
|
endif
|
|
|
|
AM_CPPFLAGS= $(ras_bproc_raw_CPPFLAGS)
|
|
|
|
proxy_SOURCES = \
|
|
ras_bproc_raw.c \
|
|
ras_bproc_raw.h \
|
|
ras_bproc_raw_component.c
|
|
|
|
mcacomponentdir = $(pkglibdir)
|
|
mcacomponent_LTLIBRARIES = $(component_install)
|
|
mca_ras_bproc_raw_la_SOURCES = $(proxy_SOURCES)
|
|
mca_ras_bproc_raw_la_LIBADD = \
|
|
$(ras_bproc_raw_LIBS) \
|
|
$(top_ompi_builddir)/orte/libopen-rte.la \
|
|
$(top_ompi_builddir)/opal/libopen-pal.la
|
|
mca_ras_bproc_raw_la_LDFLAGS = -module -avoid-version $(ras_bproc_raw_LDFLAGS)
|
|
|
|
noinst_LTLIBRARIES = $(component_noinst)
|
|
libmca_ras_bproc_raw_la_SOURCES = $(proxy_SOURCES)
|
|
libmca_ras_bproc_raw_la_LIBADD = $(ras_bproc_raw_LIBS)
|
|
libmca_ras_bproc_raw_la_LDFLAGS = -module -avoid-version $(ras_bproc_raw_LDFLAGS)
|