Hi Ronald,
> To find make Martin suggested %wich make or %where make. On my machine make
> & gnumake are where they should
> be, thougth bash can not find wich or where? Are this to tools part of the
> developer tools?
> They are not on /usr/bin, where else can they be? Otherwise where can I get
> them?
"which" and "where" are built into the standard shells (zsh, csh, tcsh)
found in MacOSX. Judging by bash on my solaris box (I haven't installed it
for MacOSX) it seems that "where" is not available in bash, but you can use
"whereis" instead: I'd guess that "where" is simply another way to call
"whereis" in the other shells. "which" (with the "h") works fine in bash.
That is, both of these should work for you:
which make
whereis make
Cheers,
Paul