Re: Re: cygpath does not work properly in Makefile

2014-07-22 Thread Corinna Vinschen
On Jul 22 11:24, Gökçe Aydos wrote: > On 2014-07-21 13:23, Marco Atzeri wrote: > >I presume the make you are using is not cygwin one > >as the first form is understandable only by cygwin programs > > I do not see a difference between the two lines, because the command > "cygpath" is used in both.

Re: Re: cygpath does not work properly in Makefile

2014-07-22 Thread Gökçe Aydos
On 2014-07-21 13:23, Marco Atzeri wrote: I presume the make you are using is not cygwin one as the first form is understandable only by cygwin programs I do not see a difference between the two lines, because the command "cygpath" is used in both. I want to add that I get the behavior both un

Re: cygpath does not work properly in Makefile

2014-07-21 Thread Marco Atzeri
On 21/07/2014 11:44, Gökçe Aydos wrote: Hello, I want to convert absolute Unix paths to Windows paths using cygpath in a Makefile: FILES = lib1 ./relative.vhd \ lib2 /cygdrive/c/Windows/absolute.vhd convert_absolute_paths_to_windows_paths: @echo 1: $(patsubst /%,$(shell cygpath -

cygpath does not work properly in Makefile

2014-07-21 Thread Gökçe Aydos
Hello, I want to convert absolute Unix paths to Windows paths using cygpath in a Makefile: FILES = lib1 ./relative.vhd \ lib2 /cygdrive/c/Windows/absolute.vhd convert_absolute_paths_to_windows_paths: @echo 1: $(patsubst /%,$(shell cygpath -m /%),$(FILES)) @echo 2: $(sh