X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fcreate_filelist.sh;h=2b5490d6be824ad81f93892f561e7d810bd0feb0;hb=ecb5fc89b37112b0866ad752562aaec70ed1b650;hp=668d82d26d538cdb30adbdbc1241c4a80d111833;hpb=3e8eb6185ca2be3f6d951e45509e9bb7c667a03e;p=libfirm diff --git a/ir/create_filelist.sh b/ir/create_filelist.sh index 668d82d26..2b5490d6b 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 config debug external 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 -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