spek

Acoustic spectrum analyser https://github.com/alexkay/spek spek.cc
git clone http://git.hanabi.in/repos/spek.git
Log | Files | Refs | README

autogen.sh (304B)


      1 #!/bin/sh
      2 # Run this to generate all the initial makefiles, etc.
      3 
      4 test -n "$srcdir" || srcdir=$(dirname "$0")
      5 test -n "$srcdir" || srcdir=.
      6 (
      7   cd "$srcdir" &&
      8   touch config.rpath &&
      9   AUTOPOINT='intltoolize --automake --copy' autoreconf -fiv
     10 ) || exit
     11 test -n "$NOCONFIGURE" || "$srcdir/configure" "$@"