X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fcreate_filelist.sh;h=de6e1b55b39934fa652eeedec27dc332282639f3;hb=34e3b8d50bce639e760da7233524a4db85c80290;hp=074bb96aff9ec2daa383301c3949e0158f6e4084;hpb=049e7746fb729a28e90e69f02899c76c7b98b275;p=libfirm diff --git a/ir/create_filelist.sh b/ir/create_filelist.sh index 074bb96af..de6e1b55b 100755 --- a/ir/create_filelist.sh +++ b/ir/create_filelist.sh @@ -3,7 +3,7 @@ # Little helper script used to create the file list for Makefile.am # automatically -DIRS="adt ana arch be common debug ident ir libcore lower net obstack opt stat tr tv" +DIRS="adt ana be common debug ident ir libcore lower lpp obstack opt stat tr tv kaps" echo "libfirm_la_SOURCES = \\" > FILELIST for dir in $DIRS; do @@ -12,12 +12,15 @@ for dir in $DIRS; do done done +echo "" >> FILELIST echo "" >> FILELIST echo "EXTRA_DIST = \\" >> FILELIST -FILES=`find $DIRS -maxdepth 1 -name "*.h" -o -name "*.def" -o -name "*.sh"` +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 for f in be/scripts/*.pl; do echo -e "\t$f \\" >> FILELIST done +echo "" >> FILELIST