[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: problems w/ make.
From: |
Eli Zaretskii |
Subject: |
Re: problems w/ make. |
Date: |
Wed, 27 Sep 2006 06:16:06 +0300 |
> From: <address@hidden>
> CC: <address@hidden>
> 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.
Re: problems w/ make., Eli Zaretskii, 2006/09/26
Re: Re: problems w/ make., humbe04, 2006/09/26
- Re: problems w/ make.,
Eli Zaretskii <=