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

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