Although I don't have time to try to figure out why there might be a
difference, you might try this construction:
ALL_OBJECTS = $(wildcard $(join $(ALL_OBJECTS_DIR),*.o))
which I am currently using with success under Win32. Also (of course) make
sure
that the directory is correct and that there are .o's to be found there.
-- Dave
Dave Stockton
Embedded Power Corporation
10450 Stancliff Suite 110
Houston, TX 77099 USA
Voice: (800) 525-4302
Fax: (281) 561-9980
[EMAIL PROTECTED]
www.embeddedpower.com
> -----Original Message-----
> From: Jianfei XU [SMTP:[EMAIL PROTECTED]]
> Sent: Thursday, February 24, 2000 4:45 PM
> To: [EMAIL PROTECTED]
> Subject: wildcard works in make 3.77?
>
> I am trying to use wildcard function in make file, here is the code
>
> ALL_OBJECTS=$(wildcard $(ALL_OBJECTS_DIR)/*.o)
>
> After this, the content of ALL_OBJECTS is empty.
>
> Anyone out there knows the reason?
>
>