consistency update: foamNew, foamNewSource, foamNewTemplate

- simplified the logic
- provide direct link to the respective scripts
- provide help from the respective scripts
This commit is contained in:
Mark Olesen
2009-08-02 12:43:24 +02:00
parent 270f14f644
commit e211ff7dab
21 changed files with 182 additions and 177 deletions

View File

@ -22,11 +22,11 @@
# along with OpenFOAM; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#
# Script
# File
# Makefile
#
# Description
# Generic Makefile used by wmake
# A generic Makefile, used by wmake
#
#------------------------------------------------------------------------------

View File

@ -22,11 +22,11 @@
# along with OpenFOAM; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#
# Script
# File
# MakefileApps
#
# Description
# Makefile used by
# Makefile used by
# wmake all
# to make the applications in the subdirectories of the current directory
#

View File

@ -22,11 +22,11 @@
# along with OpenFOAM; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#
# Script
# File
# MakefileFiles
#
# Description
# General, easy to use make system for multi-platform development.
# A Makefile for the 'files', used by wmake
#
#------------------------------------------------------------------------------
@ -40,7 +40,7 @@ include $(RULES)/general
include $(OBJECTS_DIR)/options
#------------------------------------------------------------------------------
# declare names of make system control files derived from file files
# declare names of make system control files derived from file 'files'
#------------------------------------------------------------------------------
FILES = $(WM_OPTIONS)/files
@ -51,7 +51,7 @@ DFILES = $(WM_OPTIONS)/dependencyFiles
IFILES = $(WM_OPTIONS)/includeDeps
#------------------------------------------------------------------------------
# Declare dependecy of all make system files on FILE
# Declare dependecy of all make system files on FILES
# Causes all derived files to be remade if any are changed or missing
#------------------------------------------------------------------------------

View File

@ -22,11 +22,11 @@
# along with OpenFOAM; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#
# Script
# File
# MakefileOptions
#
# Description
# General, easy to use make system for multi-platform development.
# A Makefile for the 'options', used by wmake
#
#------------------------------------------------------------------------------
@ -37,13 +37,13 @@ include $(GENERAL_RULES)/general
include $(RULES)/general
#------------------------------------------------------------------------------
# declare names of make system control files derived from file files
# declare names of make system control files derived from file 'options'
#------------------------------------------------------------------------------
OPTIONS = $(WM_OPTIONS)/options
#------------------------------------------------------------------------------
# Declare dependency of all make system files on FILE
# Declare dependency of all make system files on OPTIONS
# Causes all derived files to be remade if any are changed or missing
#------------------------------------------------------------------------------

View File

@ -55,12 +55,12 @@ else
fi
[ -e Make/files ] || {
echo "$Script: Creating files"
echo "$Script: Creating Make/files"
$WM_DIR/scripts/makeFiles
}
[ -e Make/options ] || {
echo "$Script: Creating options"
echo "$Script: Creating Make/options"
$WM_DIR/scripts/makeOptions
}