Skip to content

Commit

Permalink
Initial commit for version 2.0.x patch release
Browse files Browse the repository at this point in the history
  • Loading branch information
OpenFOAM-admin authored and OpenFOAM-admin committed Jun 16, 2011
0 parents commit 931a91d
Show file tree
Hide file tree
Showing 10,748 changed files with 5,228,816 additions and 0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
87 changes: 87 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
# git-ls-files --others --exclude-from=.git/info/exclude
# Lines that start with '#' are comments.

# editor and misc backup files - anywhere
*~
.*~
*.bak
*.bak[0-9][0-9]
*.orig
*.orig[0-9][0-9]
\#*\#

# file-browser settings - anywhere
.directory

# CVS recovered versions - anywhere
.#*

# objects and archives - anywhere
*.[oa]
*.la
*.so
*.jar

# derived files
lex.yy.c

# Corefiles
core

# dependency files - anywhere
*.dep

# lnInclude (symlink) folders - anywhere
lnInclude

# build folders - anywhere
linux*Clang*/
linux*Gcc*/
linux*Icc*/
linuxming*/
SiCortex*Gcc*/
solaris*Gcc*/
SunOS*Gcc*/
platforms/

# reinstate wmake/rules that might look like build folders
!wmake/rules/*/

# doxygen generated documentation
doc/Doxygen/html
doc/Doxygen/latex
doc/Doxygen/man
doc/Doxygen/DTAGS

# generated files in the main directory (e.g. ReleaseNotes-?.?.html)
# and in the doc directory
/*.html
/doc/*.html

# untracked configuration files
/etc/prefs.csh
/etc/prefs.sh
/etc/config/prefs.csh
/etc/config/prefs.sh

# source packages - anywhere
*.tar.bz2
*.tar.gz
*.tar
*.tgz
*.gtgz

# ignore the persistent .build tag in the main directory
/.build

# ignore .timeStamp in the main directory
/.timeStamp

# ignore .tags in the main directory
/.tags

# ignore eclipse project files in the main directory
/.cproject
/.project

# end-of-file
37 changes: 37 additions & 0 deletions Allwmake
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
#!/bin/sh
cd ${0%/*} || exit 1 # run from this directory

wmakeCheckPwd "$WM_PROJECT_DIR" || {
echo "Error: Current directory is not \$WM_PROJECT_DIR"
echo " The environment variables are inconsistent with the installation."
echo " Check the OpenFOAM entries in your dot-files and source them."
exit 1
}

[ -n "$FOAM_EXT_LIBBIN" ] || {
echo "Error: FOAM_EXT_LIBBIN not set"
echo " Check the OpenFOAM entries in your dot-files and source them."
exit 1
}

# wmake is required for subsequent targets
( cd wmake/src && make )

# build ThirdParty sources
if [ -d "$WM_THIRD_PARTY_DIR" ]
then
$WM_THIRD_PARTY_DIR/Allwmake
else
echo "no ThirdParty sources found - skipping"
fi

# build OpenFOAM libraries and applications
src/Allwmake
applications/Allwmake

if [ "$1" = doc ]
then
doc/Allwmake
fi

# ----------------------------------------------------------------- end-of-file

0 comments on commit 931a91d

Please sign in to comment.