This is the mail archive of the cygwin@cygwin.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Problems with trivial makefile


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/


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]