make not found

Hi,

I am working with solaris 5.9 and I created make file and I am trying to execute it in a file but not able to execute the file.It is throwing the error--

So please tell me how to resolve it :confused::confused:

Thanks in Advance...

there is no "make" inside solaris by default. you have to install it.

I installed the gcc compiler and along with it make comes in that package and I have make in /usr/ccs/bin.and I also add it in the Path.
# echo $PATH
/usr/bin:/usr/ucb:/etc:.:/usr/local/bin:/usr/ccs/bin

afterthat I am also facing the problem??

Unless you choose the developer or full install meta-clusters which bundle make as /usr/ccs/bin/make.

Perhaps haven't you exported the PATH variable, or are you setting it differently in the test.ksh script.

Just before running make in this script, add these commands:

echo PATH=$PATH
type make
ls -l /usr/ccs/bin/make