make command

hi
i tried to search for the "make" command but to no avail.
this is what happens:

when i try to type the "make" command,

it prompt me the error "
csh:make:not found
***error code 1
make:Fatal error: command fail for target 'all' "

i have just freshly install solaris 9 on my server.
last time when i tried to issue "make install" it is able to work.
is there any setting in which i have to set?
and where is the "make" command located?

lost boi...

Give the output of

type make

make: not found

make is in /usr/ccs/bin

yup even when i type the full path
/usr/ccs/bin/make it prompted me fatal error

Look at your error message. make is running and trying to make the target "all". This fails because make invoked csh which tried to invoke a second copy of make. You need to fix your path so csh can find make.

hi
can teach me how to fix the path?
where to set it?
thanks

You can append /usr/ccs/bin to your path like this..

set path=(/usr/ccs/bin $path)

That should work. $path holds existing values in the path.

vino

Moderator comments were removed during original forum migration.