diff options
Diffstat (limited to 'build-aux')
-rwxr-xr-x | build-aux/gen-make | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/build-aux/gen-make b/build-aux/gen-make index 87a1df2..fbed524 100755 --- a/build-aux/gen-make +++ b/build-aux/gen-make @@ -94,6 +94,12 @@ until [ $# -eq 0 ]; do ( # begin this file's dependencies echo -n "$path/$sansext.xmlo: $path/$sansext.xml " + # only further process dependency files + if [[ ! $dpath =~ .dep$ ]]; then + echo + continue; + fi + # output deps while read dep; do # if the first character is a slash, then it's relative to the project |