bug-make
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: trouble with a trivial makefile


From: Benoit Poulot-Cazajous
Subject: Re: trouble with a trivial makefile
Date: 03 Dec 2003 10:51:32 +0100
User-agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3

"Guillaume du Pontavice" <address@hidden> writes:

> mkdir fold1 fold2 fold3 fold4 fold5
> echo 0 > fold1/foo1.c
> echo 0 > fold2/foo2.c
> echo 0 > fold3/foo3.c
> echo 0 > fold4/foo4.c
> echo 0 > fold5/foo5.c
> 
> i then use this small makefile :
> 
> SRCS   := $(wildcard fold1/*.c fold2/*.c fold3/*.c fold4/*.c fold5/*.c)
> 
> all:
>  @echo $(SRCS)
> 
> 
> which should give me the following results :
> fold1/foo1.c fold2/foo2.c fold3/foo3.c fold4/foo4.c fold5/foo5.c
> 
> instead of that i just retrieve :
> $ make
> fold1/foo5.c fold2/foo5.c fold3/foo5.c fold4/foo5.c fold5/foo5.c
> 
> ???

It works
"Guillaume du Pontavice" <address@hidden> writes:

> hello,
> 
> i am in trouble with a trivial makefile, using  cygwin 1.5.5-1 and make
> 3.80-1 on Windows 2000 SP3
> 
> here it is : i have just created 5 folders (fold1 fold2 ... fold5) , each
> one contains one file ( respectively foo1.c foo2.c ... foo5.c)
> 
> you can recreate this tree using this :
> 
> mkdir fold1 fold2 fold3 fold4 fold5
> echo 0 > fold1/foo1.c
> echo 0 > fold2/foo2.c
> echo 0 > fold3/foo3.c
> echo 0 > fold4/foo4.c
> echo 0 > fold5/foo5.c
> 
> i then use this small makefile :
> 
> SRCS   := $(wildcard fold1/*.c fold2/*.c fold3/*.c fold4/*.c fold5/*.c)
> 
> all:
>  @echo $(SRCS)
> 
> 
> which should give me the following results :
> fold1/foo1.c fold2/foo2.c fold3/foo3.c fold4/foo4.c fold5/foo5.c
> 
> instead of that i just retrieve :
> $ make
> fold1/foo5.c fold2/foo5.c fold3/foo5.c fold4/foo5.c fold5/foo5.c
> 
>...
> Is this problem cygwin-related ?

Probably, as on Linux make 3.80 gives the correct result.

  -- Benoit




reply via email to

[Prev in Thread] Current Thread [Next in Thread]