mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
minor tweak to wmake
- place wmkdep and dirToString executables under utilbin/$(WM_ARCH)$(WM_COMPILER). This helps somewhat when copying rules about, and might help when creating general rules.
This commit is contained in:
@ -33,11 +33,11 @@ Usage
|
||||
echo dirName | dirToString
|
||||
|
||||
e.g.
|
||||
using csh
|
||||
set baseDirName=`echo $dir | sed 's%^\./%%' | $rulesPath/dirToString`
|
||||
using sh
|
||||
baseDirName=`echo $dir | sed 's%^\./%%' | $utilbin/dirToString`
|
||||
|
||||
using ksh
|
||||
baseDirName=`echo $dir | sed 's%^\./%%' | $rulesPath/dirToString`
|
||||
using csh
|
||||
set baseDirName=`echo $dir | sed 's%^\./%%' | $utilbin/dirToString`
|
||||
|
||||
\*----------------------------------------------------------------------------*/
|
||||
|
||||
@ -49,7 +49,7 @@ int main()
|
||||
{
|
||||
int c;
|
||||
int nextupper = 0;
|
||||
|
||||
|
||||
while ((c=getchar()) != EOF)
|
||||
{
|
||||
if (c == '/')
|
||||
@ -66,7 +66,7 @@ int main()
|
||||
{
|
||||
putchar(c);
|
||||
}
|
||||
|
||||
|
||||
nextupper = 0;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user