Mail Archives: cygwin/2001/05/10/09:22:48
On Thu, May 10, 2001 at 05:02:58PM +0400, egor duda wrote:
> apparently make cannot find Makefile in current directory, so it has
> no reasons to treat 'aux' as phony. so, it checks if there exists such
> file.
Checking if the file exists should not block IMHO, even if that file is
a DOS device. Stat-ing too (just tried ls -l aux). Only
reading/writing should block.
I have tried `make aux' with no Makefile and with several makefiles, but
could not reproduce the problem (Win2000, Cygwin 1.3.1; nearly latest --
bash is only 2.05-5, not 2.05-6).
# No makefile: `make: Nothing to be done for `aux''
# This makefile: `make: `aux' is up to date.'
aux:
@echo foo
# This one: `foo'
aux:
@echo foo
.PHONY: aux
# This one: `foo'
aux: test
test:
echo foo
# This one: `foo'
aux: test
test:
echo foo
.PHONY: aux
Marius Gedminas
--
Whom the gods would destroy, they first teach BASIC.
--
Want to unsubscribe from this list?
Check out: http://cygwin.com/ml/#unsubscribe-simple
- Raw text -