On 2007-07-26 20:45:40 (+0530), [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
> -----Original Message-----
> From: Kristof Provost [mailto:[EMAIL PROTECTED]
> Sent: Thursday, July 26, 2007 6:33 PM
> To: Ramajeyam, Ramkumar (Cognizant)
> Cc: [email protected]
> Subject: Re: Regarding make command
> On 2007-07-26 15:02:16 (+0530), [EMAIL PROTECTED]
> <[EMAIL PROTECTED]> wrote:
> > Hi,
> >
> > I am finding difficulty in installing software.
> > The Makefiles inside the configuration refer to "${MAKE} -C src all" 
> > command.
> > So while executing the make command. I am getting the foll. Error
> >    make -C src all
> > Make: Unknown flag argument C.  Stop.
> > *** Error exit code 1
> > Stop.
>
> > After browsing through this error I came to know that GNU package has to be
> > installed.
> 
> > Kindly letme know whether is there any alternative for this command as I
> don’t
> > have GNU in the machine I am using.
> 
> > Regards,
> > Ram
> 
> Hi,
> 
> The -C option is quite simple. It will just change directory
> and then run make (without -C of course).
> 
> You should be able to replace the command by the following:
> cd src && ${MAKE} all
> 
>  
> 
> Kristof

>  
> 
> Hi Krist,
> 
> I tried with the command what you gave, but now I am getting a new error.
> 
> Bad character & (octal 46), line 9Make: .  Stop.
> 
> FYI,
> 
> I am using Hp UNIX machine.
> 
> Kindly help me out to resolve the issue.
> 
> Regards,
> 
> Ram
>

I suspect you're using a version of make which is far from compatible
with GNU Make (which your makefile seems to expect).

It's probably best to build GNU Make for your platform as it's quite
possible you'll need to rewrite the current makefile to get it to work
with your make version.

Please also keep the mailing list in cc. There may be people familiar
with the HP-UX make variant you're using.

Regards,
Kristof


_______________________________________________
Help-make mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/help-make

Reply via email to