1753818 Members
9011 Online
108805 Solutions
New Discussion юеВ

GNU Make for HP-UX

 
SOLVED
Go to solution
Alain Yoshida
Regular Advisor

GNU Make for HP-UX

Our hp-ux 11 already have a make, but it is not GNU make. Any Make can work with GCC, or we must install GNU Make to work with GCC. Thanks.
2 REPLIES 2
Steven Schweda
Honored Contributor
Solution

Re: GNU Make for HP-UX

> Our hp-ux 11 [...]

Not a very detailed description of anything.

uname -a


"make" programs do not care which compilers
you use, so using GCC does not mean that you
need GNU "make".

However, different "make" programs may
support different "make" features, so, if you
wish to build some particular product, and
the "make" file for that product uses GNU
"make" features which the HP-UX "make"
program does not understand, then you'll
probably want to install GNU "make". (Much
GNU software expects to use GNU "make".)

If you install GNU "make" in "/usr/local",
then it's easy to do something like:

ln -s make /usr/local/bin/gmake

Then, if your PATH has "/usr/local/bin"
toward the end, you can say "make" when you
wish to use the HP-UX "make" program, and
"gmake" when you wish to use GNU "make".
Jose Mosquera
Honored Contributor

Re: GNU Make for HP-UX

Hi,

You can find a ready to install gmake binary depot in:
http://hpux.connect.org.uk/hppd/hpux/Gnu/make-3.82/

Also this HP-UX official site provides you brief documentation about it. Also you can see related URL to GNU site.

Rgds.