view misc/superconfigure @ 497:e583f57f1311

Give a dedicated key to toggling the centre line, and move it out of the overlay level setting -- reducing number of overlay levels to 3. Introduce two distinct vertical scale types (so that we can hide the spectrogram colour scale part easily)
author Chris Cannam
date Mon, 30 Jan 2012 16:01:21 +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"