Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com X-Injected-Via-Gmane: http://gmane.org/ To: cygwin AT cygwin DOT com From: "Guillaume du Pontavice" Subject: Re: Problems with trivial makefile Date: Wed, 3 Dec 2003 21:41:16 +0100 Lines: 58 Message-ID: References: X-Complaints-To: usenet AT sea DOT gmane DOT org X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2800.1158 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 Hello, here is my config which looks exactly like yours : i have also forced a reinstallation of ash, bash, cygwin and make packages this problems appears on three PCs (i have tested only on those 3 PCs , same Cygwin configuration, same Win2000 SP4) in my c:\cygwin\cygwin.bat I have : @echo off C: chdir C:\cygwin\bin bash --login -i Administrateur AT mangui ~/test_make2/test2 $ find . -name "*.c" ./fold1/foo1.c ./fold2/foo2.c ./fold3/foo3.c ./fold4/foo4.c ./fold5/foo5.c Administrateur AT mangui ~/test_make2/test2 $ cygcheck -c ash bash cygwin make Cygwin Package Information Package Version Status ash 20031007-1 OK bash 2.05b-16 OK cygwin 1.5.5-1 OK make 3.80-1 OK Administrateur AT mangui ~/test_make2/test2 $ less makefile SRCS_1 := $(wildcard fold1/*.c) SRCS_2 := $(wildcard fold1/*.c fold2/*.c ) SRCS_3 := $(wildcard fold1/*.c fold2/*.c fold3/*.c ) SRCS_4 := $(wildcard fold1/*.c fold2/*.c fold3/*.c fold4/*.c ) SRCS_5 := $(wildcard fold1/*.c fold2/*.c fold3/*.c fold4/*.c fold5/*.c) all: @echo $(SRCS_1) @echo $(SRCS_2) @echo $(SRCS_3) @echo $(SRCS_4) @echo $(SRCS_5) Administrateur AT mangui ~/test_make2/test2 $ make fold1/foo1.c fold1/foo1.c fold2/foo1.c fold1/foo1.c fold2/foo1.c fold3/foo1.c fold1/foo1.c fold2/foo1.c fold3/foo1.c fold4/foo1.c fold1/foo1.c fold2/foo1.c fold3/foo1.c fold4/foo1.c fold5/foo1.c -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/