Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Help Installing 'Make'

Status
Not open for further replies.

trent101

Programmer
Nov 4, 2005
50
AU
Hey,

I have just installed Solaris 9 on my sprac box.

I realised I allready have the tar program, so the next thing I did was go and
download gunzip. However when I went to build it I realised
that I dont have the make program.

So I am just wondering how to I install it if I cant use make to build it? If that makes sense.

What I was thinking was there has to be an executable for it, so you dont have to compile.

I found a debian package, which I think may be like an exe but not sure.

I tried to run this but It tells me that its not found.

Any ideas?

Cheers...
 
find / -name make -print

make sure the directory where make was found is in your path

echo $PATH
to view your current path

PATH=$PATH:/make/dir
to add it to your current path

cd
to return to your home dir

vi .profile and add the directory to the path statement

you can also use the whereis command to find the location of programs

whereis make

Mike

"A foolproof method for sculpting an elephant: first, get a huge block of marble, then you chip away everything that doesn't look like an elephant."

 
Thanks for the reply.

I have tried what you said but no make program is found.

I couldnt use the whereis comand as it told me it was not found either.

But when I ran the find program no make program was found anywhere.

This is what I thought was the case, as I didnt think Solaris 9 came with make.

So again do I need to download it? And if so where can I dounload an "executable" for it as I cannot not 'make' it without allready having the make program.

Thanks.
 
You must have a fairly limited install on this system. On a Solaris 9 system with a typical End-User install make can be found in /usr/ccs/bin. It is part of the SUNWsprot package. Is that installed (pkginfo -l SUNWsprot)? If not, do you have your original installation source (CDs, etc.)? You should be able to locate the package on the CD and install it from there.

Or install the GNU make as Ken suggested.

Annihilannic.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top