view misc/superconfigure @ 490:bc04d651f8a4

Ensure all windows are closed when the main one is (thus exiting the application even if some other windows were still open)
author Chris Cannam
date Thu, 19 Jan 2012 15:36:59 +0000
parents ba928954e640
children
line wrap: on
line source
#!/bin/sh
subdirs="svcore svgui svapp sonic-visualiser"
echo 
echo " *** Preparing to configure in: $subdirs"
echo
for dir in $subdirs; do
    echo " *** Configuring in: $dir"
    echo
    ( cd "$dir" && ./configure "$@" ) || exit 1
    echo
done
cat > Makefile <<EOF
TARGETS = sub-svcore sub-svgui sub-svapp sub-sonic-visualiser
all:	\$(TARGETS)
sub-svcore:
	\$(MAKE) --directory=svcore
sub-svgui:
	\$(MAKE) --directory=svgui
sub-svapp:
	\$(MAKE) --directory=svapp
sub-sonic-visualiser:
	\$(MAKE) --directory=sonic-visualiser
EOF
echo " *** Generated Makefile"