1
1

Remove a few .ompi_ignore, and add configure scripts, so that the source files of these components will be put into the tarball.

This commit was SVN r21070.
Этот коммит содержится в:
Shiqing Fan 2009-04-24 16:49:01 +00:00
родитель 3d4e0472d6
Коммит d8f61695cd
6 изменённых файлов: 103 добавлений и 0 удалений

Просмотреть файл

Просмотреть файл

55
orte/mca/plm/process/Makefile.am Исполняемый файл
Просмотреть файл

@ -0,0 +1,55 @@
#
# 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-2009 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 Cisco Systems, Inc. All rights reserved.
# $COPYRIGHT$
#
# Additional copyrights may follow
#
# $HEADER$
#
EXTRA_DIST = .windows
AM_CPPFLAGS = $(plm_process_CPPFLAGS)
sources = \
plm_process.h \
plm_process_component.c \
plm_process_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).
if OMPI_BUILD_plm_process_DSO
lib =
lib_sources =
component = mca_plm_process.la
component_sources = $(sources)
else
lib = libmca_plm_process.la
lib_sources = $(sources)
component =
component_sources =
endif
mcacomponentdir = $(pkglibdir)
mcacomponent_LTLIBRARIES = $(component)
mca_plm_process_la_SOURCES = $(component_sources)
mca_plm_process_la_LDFLAGS = -module -avoid-version $(plm_process_LDFLAGS)
mca_plm_process_la_LIBADD = $(plm_process_LIBS)
noinst_LTLIBRARIES = $(lib)
libmca_plm_process_la_SOURCES = $(lib_sources)
libmca_plm_process_la_LDFLAGS = -module -avoid-version $(plm_process_LDFLAGS)
libmca_plm_process_la_LIBADD = $(plm_process_LIBS)

26
orte/mca/plm/process/configure.m4 Исполняемый файл
Просмотреть файл

@ -0,0 +1,26 @@
# -*- shell-script -*-
#
# 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-2009 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$
#
# MCA_plm_process_CONFIG([action-if-found], [action-if-not-found])
# -----------------------------------------------------------
AC_DEFUN([MCA_plm_process_CONFIG],[
plm_process_good=0
# PROCESS does never exist under Unix
[$2]
])dnl

22
orte/mca/plm/process/configure.params Исполняемый файл
Просмотреть файл

@ -0,0 +1,22 @@
# -*- shell-script -*-
#
# 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-2009 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) 2007 Los Alamos National Security, LLC. All rights
# reserved.
# $COPYRIGHT$
#
# Additional copyrights may follow
#
# $HEADER$
#
PARAM_CONFIG_FILES="Makefile"

Просмотреть файл