[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Spaces in file names!!
From: |
Earnie Boyd |
Subject: |
Re: Spaces in file names!! |
Date: |
Wed, 06 Nov 2002 10:33:44 -0500 |
User-agent: |
Mozilla/5.0 (Windows; U; WinNT4.0; en-US; rv:1.1) Gecko/20020826 |
Zhang Zhenhua wrote:
> HI Friends:
>
> I am using gnumake on windows XP.
>
Whose distribution are you using or did you build it yourself?
> And I wrote a make file like this:
>
> SDCC = C:\My Work\Compiler\Bin\sdcc.exe
Try adding quotes:
SDCC = "C:\My Work\Compiler\Bin\sdcc.exe"
> Main.ihx: Main.rel
> $(SDCC) Main.rel
> Main.rel: Main.c
> $(SDCC) -c Main.c
>
> But it seems that make can't create a process using the SDCC command
> line(with spaces in it). Any body knows how to make that work? Thanks.
>
Yes, whitespace in filenames are nasty things for both UNIX and Win32.
Earnie.