view misc/superconfigure @ 411:9f6436615ac7

I had put the Info.plist in deploy/osx/ before I noticed it was also in osx/ -- sorry. Removing from osx/ -- we really need the plist to be written by deploy/osx/deploy.sh (and not by qmake) because we need the version number in it. However, leaving it in the .pro file anyway so we don't end up with nothing at least if nobody runs deploy.sh
author Chris Cannam
date Fri, 08 Apr 2011 16:39:23 +0100
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"