-
Notifications
You must be signed in to change notification settings - Fork 158
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
OpenFOAM-admin
authored and
OpenFOAM-admin
committed
Mar 6, 2013
0 parents
commit a3c0017
Showing
11,921 changed files
with
2,844,859 additions
and
0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Oops, something went wrong.