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:
Mark Olesen
2009-05-06 15:56:29 +02:00
parent 51f443a345
commit 1cdbeb29d7
16 changed files with 66 additions and 52 deletions

View File

@ -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;
}
}