3 # Remove comments from .sources files since this usage of IFS is unsuable inside make
4 # (trouble with newlines)
10 for f
in $source_files ; do
13 for f
in `cat $f` ; do
17 # some lines in .sources may contain quick syntax to exclude files i.e.:
18 # ../dir/*.cs:File1.cs,File2.cs (include everything except File1.cs and File2.cs)
19 # let's drop that ":files" suffix
20 for line
in `echo $f | cut -d \: -f 1` ; do