X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=src%2Fmodules%2Fconfigure;h=1a7b7492202cd2dfa846f3c5df767fc99fedd93a;hb=5b33756c6cfa6a435ea5fce61a33ece1072c1380;hp=365fe433babc9e3c80df3e44eca77e9fbaed7982;hpb=661165812e3410fe2f6f49d7af882b36a0efcf82;p=melted diff --git a/src/modules/configure b/src/modules/configure index 365fe43..1a7b749 100755 --- a/src/modules/configure +++ b/src/modules/configure @@ -3,6 +3,9 @@ # Clean up disables if not in help mode [ "$help" != "1" ] && rm -f disable-* producers.dat filters.dat transitions.dat consumers.dat +# Create the make.inc file +echo SUBDIRS = `find -type d -maxdepth 1 | grep -v CVS | grep -v "^.$" | sed 's/\.\///'` > make.inc + # Iterate through arguments for i in $* do @@ -16,7 +19,7 @@ for i in * do if [ -x $i/configure -a \( "$help" = "1" -o ! -f disable-$i \) ] then - echo "Configuring $i:" + [ "$help" = "0" ] && echo "Configuring modules/$i:" pushd $i > /dev/null ./configure $@ [ $? != 0 ] && exit 1