mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
- simplifies code, covers most cases. Can use wmake -show-api or wmakeBuildInfo to query the make rules. STYLE: Allwmake script adjustments - use bin/foamEtcFile instead of relying on PATH. The make environment may not have the OpenFOAM bin/ in it. - simpler shell syntax
9 lines
240 B
Bash
Executable File
9 lines
240 B
Bash
Executable File
#!/bin/sh
|
|
# Allwmake with scan-build (clang)
|
|
|
|
scan-build \
|
|
--use-cc="$(wmake -show-path-c)" \
|
|
--use-c++="$(wmake -show-path-cxx)" \
|
|
./Allwmake "$@"
|
|
#------------------------------------------------------------------------------
|