Mailing-List: contact cygwin-help@cygwin.com; run by ezmlm
List-Subscribe: <mailto:cygwin-subscribe@cygwin.com>
List-Archive: <http://sources.redhat.com/ml/cygwin/>
List-Post: <mailto:cygwin@cygwin.com>
List-Help: <mailto:cygwin-help@cygwin.com>, <http://sources.redhat.com/ml/#faqs>
Sender: cygwin-owner@cygwin.com
Mail-Followup-To: cygwin@cygwin.com
Delivered-To: mailing list cygwin@cygwin.com
X-Injected-Via-Gmane: http://gmane.org/
To: cygwin@cygwin.com
From: "Guillaume du Pontavice" <g.du.pontavice@gmx.net>
Subject: Re: Problems with trivial makefile
Date: Wed, 3 Dec 2003 21:41:16 +0100
Lines: 58
Message-ID: <bqlhng$hmo$1@sea.gmane.org>
References: <BADF3C947A1BD54FBA75C70C241B0B9E90BB96@ex02.co.idirect.net>
X-Complaints-To: usenet@sea.gmane.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@mangui ~/test_make2/test2
$ find . -name "*.c"
./fold1/foo1.c
./fold2/foo2.c
./fold3/foo3.c
./fold4/foo4.c
./fold5/foo5.c


Administrateur@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@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@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/

