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
_______________________________________________
Help-make mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/help-make