X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fcreate_filelist.sh;h=de6e1b55b39934fa652eeedec27dc332282639f3;hb=cc73c2485f371de10db363869e5a324dbaf23e18;hp=406592a62c0b51afaa94a82fc1265c9f59d37f51;hpb=1a3b7d363474ab544c13093a2f0b578718d37c7a;p=libfirm diff --git a/ir/create_filelist.sh b/ir/create_filelist.sh index 406592a62..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 be common debug ident ir libcore lower 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 @@ -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