%% "Angel Tsankov" <[EMAIL PROTECTED]> writes: at> $(wildcard *.cpp) returns a list of all files that have th .cpp at> suffix. One or more of these files may contain a space in the at> name, which makes the list not very useful. Is it possible to get at> a list of quoted files names that match a pattern?
Quoted filenames won't help because make doesn't do quotes. Basically, it is very, very difficult, even impossible, to handle filenames containing whitespace using make. You should avoid such files. -- ------------------------------------------------------------------------------- Paul D. Smith <[EMAIL PROTECTED]> Find some GNU make tips at: http://www.gnu.org http://make.paulandlesley.org "Please remain calm...I may be mad, but I am a professional." --Mad Scientist _______________________________________________ Help-make mailing list [email protected] http://lists.gnu.org/mailman/listinfo/help-make
