X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fcreate_filelist.sh;h=de6e1b55b39934fa652eeedec27dc332282639f3;hb=5baeb7adbb892d71ead14a2fc3d71bae2d45d38e;hp=2b5490d6be824ad81f93892f561e7d810bd0feb0;hpb=3c41f51d523420c02cdf2e9ce5931e95253a48e6;p=libfirm diff --git a/ir/create_filelist.sh b/ir/create_filelist.sh index 2b5490d6b..de6e1b55b 100755 --- a/ir/create_filelist.sh +++ b/ir/create_filelist.sh @@ -15,8 +15,8 @@ done echo "" >> FILELIST echo "" >> FILELIST echo "EXTRA_DIST = \\" >> FILELIST -FILES=`find $DIRS -maxdepth 1 -name "*.h" -o -name "*.def" -o -name "*.sh" -o -name "*.l" -o -name "*.y"` -FILES="$FILES `find ir -name "*.inl"`" +FILES=$(find $DIRS -maxdepth 1 -name "*.h" -o -name "*.def" -o -name "*.sh" -o -name "*.l" -o -name "*.y") +FILES="$FILES $(find ir adt -name "*.inl")" for f in $FILES; do echo -e "\t$f \\" >> FILELIST done