> From: <[EMAIL PROTECTED]>
> CC: <[email protected]>
> Date: Tue, 26 Sep 2006 17:42:26 -0400
>
> Hi Eli, thanks again for the response,. i edited your make file to point to
> my perl lib folder a c:\perl\lib\perlio\
>
> here is the make file -- and these are the errors im getting
>
> C:\netirc\test>make
> makefile:31: *** missing separator. Stop.
That's a different problem. It's here:
> config :: $(FIRST_MAKEFILE) $(INST_LIBDIR)$(DIRFILESEP).exists
> $(NOECHO) $(NOOP)
The line(s) with the rule's command(s) should begin with a TAB, so it
should look like this:
config :: $(FIRST_MAKEFILE) $(INST_LIBDIR)$(DIRFILESEP).exists
$(NOECHO) $(NOOP)
And similarly for the other lines. You will see that in the mail I
sent, all the lines with commands started with a TAB.
_______________________________________________
Make-w32 mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/make-w32