> From: [EMAIL PROTECTED] > Date: Wed, 5 Oct 2005 13:37:12 -0700 > > Will the win32 port of gmake grok these paths. So far when I try a > simple test like > > foo := $(wildcard \\tree0\foo\bar\bld\nt\*_v) > > all: > @echo $(foo) > > The echo returns nothing or Echo is on
Don't use backslashes in the file names passed to $wildcard; use forward slashes instead: foo := $(wildcard //tree0/foo/bar/bld/nt/*_v) _______________________________________________ Make-w32 mailing list [email protected] http://lists.gnu.org/mailman/listinfo/make-w32
