[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [microblaze-uclinux] uCLinux ICAP DRIVER compilation
jardel wrote:
[snip]
> make[7]: Entering directory
> `/home/jardel/projetos/uBlaze/uClinux-cvs/uClinux-2.
> 4.x/drivers/misc/xilinx_hwicap'
> Makefile:19: *** missing separator. Stop.
The problem has come in the cut and paste of the patch, in Makefiles,
you must use the tab character at the start of lines that define
actions, or rules.
So, this rule
xilinx_hwicap.o: $(xilinx_hwicap-objs)
$(LD) -r -o $@ $(xilinx_hwicap-objs)
should actually look like this:
xilinx_hwicap.o: $(xilinx_hwicap-objs)
{TAB}$(LD) -r -o $@ $(xilinx_hwicap-objs)
No blank line, and a tab char, not spaces.
That should about do it.
Regards,
John
___________________________
microblaze-uclinux mailing list
microblaze-uclinux@xxxxxxxxxxxxxx
Project Home Page : http://www.itee.uq.edu.au/~jwilliams/mblaze-uclinux
Mailing List Archive : http://www.itee.uq.edu.au/~listarch/microblaze-uclinux/