• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#! /bin/sh
2# Run this to generate all the initial makefiles, etc.
3
4srcdir=`dirname $0`
5test -z "$srcdir" && srcdir=.
6
7DIE=0
8
9AUTOMAKE=automake-1.4
10ACLOCAL=aclocal-1.4
11
12($AUTOMAKE --version) < /dev/null > /dev/null 2>&1 || {
13        AUTOMAKE=automake
14        ACLOCAL=aclocal
15}
16
17(autoconf --version) < /dev/null > /dev/null 2>&1 || {
18	echo
19	echo "You must have autoconf installed to compile VisualNaCro."
20	echo "Download the appropriate package for your distribution,"
21	echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/"
22	DIE=1
23}
24
25($AUTOMAKE --version) < /dev/null > /dev/null 2>&1 || {
26	echo
27	echo "You must have automake installed to compile VisualNaCro."
28	echo "Get ftp://sourceware.cygnus.com/pub/automake/automake-1.4.tar.gz"
29	echo "(or a newer version if it is available)"
30	DIE=1
31}
32
33if test "$DIE" -eq 1; then
34	exit 1
35fi
36
37(test -f $srcdir/nacro.h) || {
38	echo "You must run this script in the top-level VisualNaCro directory"
39	exit 1
40}
41
42if test -z "$*"; then
43	echo "I am going to run ./configure with no arguments - if you wish "
44        echo "to pass any to it, please specify them on the $0 command line."
45fi
46
47$ACLOCAL $ACLOCAL_FLAGS
48#autoheader
49$AUTOMAKE --add-missing --copy
50autoconf
51
52echo "Running ./configure --enable-maintainer-mode" "$@"
53$srcdir/configure --enable-maintainer-mode "$@"
54
55echo "Now type 'make' to compile VisualNaCro."
56