Files
openfoam/src/Allwmake-scan
Mark Olesen d483123cef STYLE: limit foamEtcFile -show-api to querying the META-INFO/api-info
- 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
2020-02-12 17:48:09 +01:00

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 "$@"
#------------------------------------------------------------------------------