828af95be8
NOTE: This build system does not work with the current autogen.sh. Modified one is under heavy testing to make sure it does not have side effects This commit was SVN r16110.
28 строки
739 B
Bash
28 строки
739 B
Bash
# -*- shell-script -*-
|
|
#
|
|
# Copyright (c) 2004-2007 The Trustees of the University of Tennessee.
|
|
# All rights reserved.
|
|
# $COPYRIGHT$
|
|
#
|
|
# Additional copyrights may follow
|
|
#
|
|
# $HEADER$
|
|
#
|
|
|
|
# Specific to this module
|
|
|
|
PARAM_INIT_FILE=pml_v.c
|
|
PARAM_CONFIG_FILES="Makefile"
|
|
|
|
|
|
# Operate on the vprotocol framework directory to detect and configure all
|
|
# the vprotocols.
|
|
(
|
|
cd $pd_ompi_topdir
|
|
mv "$mca_no_config_env_file" "$mca_no_config_env_file.bak"
|
|
mv "$mca_m4_config_env_file" "$mca_m4_config_env_file.bak"
|
|
process_framework $pd_dir/vprotocol $rg_cwd vprotocol vprotocol
|
|
mv "$mca_no_config_env_file.bak" "$mca_no_config_env_file"
|
|
mv "$mca_m4_config_env_file.bak" "$mca_m4_config_env_file"
|
|
)
|