I have the following sample makefile, which seems to produce the following
erroneous output, using the cygwin version 1.3.10:
makefile:
target1.txt : dependency1.exists
target1.txt target2.txt :
ifneq "" "$^"
@echo $^
else
@echo this doesn't seem empty to me: $^
endif
Output:
On 19 Nov 2003, Jeremy Broughton wrote:
> I have the following sample makefile, which seems to produce the following
> erroneous output, using the cygwin version 1.3.10:
>
> makefile:
>
> target1.txt : dependency1.exists
>
> target1.txt target2.txt :
> ifneq "" "$^"
> @echo $^
> else
>