Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Development
openfoam
Commits
5d0b3348
Commit
5d0b3348
authored
Nov 05, 2008
by
Mark Olesen
Browse files
can call Allwmake scripts directly instead of with ( cd foo && ./Allwmake )
parent
9705520e
Changes
9
Hide whitespace changes
Inline
Side-by-side
Allwmake
View file @
5d0b3348
...
...
@@ -5,15 +5,15 @@ set -x
# wmake is required for subsequent targets
(
cd
wmake/src
&&
make
)
# build ThirdParty sources
(
cd
$WM_THIRD_PARTY_DIR
&&
./Allwmake
)
(
cd
src
&&
./Allwmake
)
(
cd
applications
&&
./Allwmake
)
src/Allwmake
applications/Allwmake
if
[
"
$1
"
=
doc
]
then
(
cd
doc
&&
.
/Allwmake
)
doc
/Allwmake
fi
# ----------------------------------------------------------------- end-of-file
applications/Allwmake
View file @
5d0b3348
...
...
@@ -2,7 +2,7 @@
cd
${
0
%/*
}
||
exit
1
# run from this directory
set
-x
(
cd
solvers
&&
wmake all
)
(
cd
utilities
&&
wmake all
)
wmake all
solvers
wmake all
utilities
# ----------------------------------------------------------------- end-of-file
applications/utilities/mesh/conversion/Optional/Allwmake
View file @
5d0b3348
...
...
@@ -7,14 +7,12 @@ set -x
# build libccmio and create lnInclude directory
(
cd
$WM_THIRD_PARTY_DIR
&&
./AllwmakeLibccmio
)
(
cd
$WM_THIRD_PARTY_DIR
&&
./AllwmakeLibccmio
)
# if the library built
oka
y, the headers should exist too
# if the library built
properl
y, the headers should exist too
if
[
-e
$FOAM_LIBBIN
/libccmio.so
]
then
wmake ccm26ToFoam
wmake ccm26ToFoam
fi
# ----------------------------------------------------------------- end-of-file
applications/utilities/mesh/manipulation/setSet/Allwmake
View file @
5d0b3348
...
...
@@ -2,8 +2,9 @@
cd
${
0
%/*
}
||
exit
1
# run from this directory
READLINE
=
0
if
[
-f
/usr/include/readline/readline.h
]
;
then
echo
"Found readline/readline.h include file. Enabling readline support."
if
[
-f
/usr/include/readline/readline.h
]
then
echo
"Found readline/readline.h -- enabling readline support."
READLINE
=
1
export
READLINELINK
=
"-lreadline -lncurses"
break
...
...
doc/Allwmake
View file @
5d0b3348
...
...
@@ -6,6 +6,6 @@ chmod a+rX $WM_PROJECT_DIR
chmod
a+rX
$WM_PROJECT_DIR
/doc
chmod
-R
a+rX Doxygen
(
cd
Doxygen
&&
.
/Allwmake
)
Doxygen/Allwmake
# ----------------------------------------------------------------- end-of-file
src/Allwmake
View file @
5d0b3348
...
...
@@ -4,7 +4,7 @@ set -x
wmakeLnInclude
-f
OpenFOAM
wmakeLnInclude
-f
OSspecific/
$WM_OS
(
cd
Pstream
&&
.
/Allwmake
)
Pstream/Allwmake
wmake libo OSspecific/
$WM_OS
wmake libso OpenFOAM
...
...
@@ -17,7 +17,7 @@ wmake libso surfMesh
wmake libso meshTools
wmake libso finiteVolume
(
cd
decompositionAgglomeration
&&
.
/Allwmake
)
decompositionAgglomeration/Allwmake
wmake libso sampling
...
...
@@ -30,12 +30,12 @@ wmake libso engine
wmake libso ODE
wmake libso randomProcesses
(
cd
thermophysicalModels
&&
.
/Allwmake
)
(
cd
transportModels
&&
.
/Allwmake
)
(
cd
turbulenceModels
&&
.
/Allwmake
)
(
cd
lagrangian
&&
.
/Allwmake
)
(
cd
postProcessing
&&
.
/Allwmake
)
(
cd
conversion
&&
.
/Allwmake
)
thermophysicalModels/Allwmake
transportModels/Allwmake
turbulenceModels/Allwmake
lagrangian/Allwmake
postProcessing/Allwmake
conversion/Allwmake
wmake libso autoMesh
wmake libso errorEstimation
...
...
src/lagrangian/Allwmake
View file @
5d0b3348
...
...
@@ -6,7 +6,7 @@ wmake libso basic
wmake libso solidParticle
wmake libso intermediate
wmake libso dieselSpray
(
cd
molecularDynamics
&&
wmake libso potential
)
(
cd
molecularDynamics
&&
wmake
libso molecule
)
molecularDynamics
/All
wmake
# ----------------------------------------------------------------- end-of-file
src/lagrangian/molecularDynamics/Allwmake
0 → 100755
View file @
5d0b3348
#!/bin/sh
cd
${
0
%/*
}
||
exit
1
# run from this directory
set
-x
wmake libso potential
wmake libso molecule
# ----------------------------------------------------------------- end-of-file
src/turbulenceModels/Allwmake
View file @
5d0b3348
...
...
@@ -2,7 +2,7 @@
cd
${
0
%/*
}
||
exit
1
# run from this directory
set
-x
(
cd
RAS
&&
.
/Allwmake
)
(
cd
LES
&&
.
/Allwmake
)
RAS
/Allwmake
LES
/Allwmake
# ----------------------------------------------------------------- end-of-file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment