help-make
[Top][All Lists]
Advanced

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

Re: wildcard recursive?!


From: Dan Kegel
Subject: Re: wildcard recursive?!
Date: Fri, 17 Oct 2003 15:23:11 -0700
User-agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.4) Gecko/20030617

Sylvain Becker wrote:
I am looking for something like :
FILES = $(shell find . -name "*.c")

but without calling the shell, because it seems not to work on solaris.

You're missing the -print command.  Try

FILES = $(shell find . -name "*.c" -print)

Posix find doesn't require -print, but classic find does.
- Dan





reply via email to

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