~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to config/autorun.sh

  • Committer: Jay Pipes
  • Date: 2008-08-06 20:57:54 UTC
  • mto: (264.1.17 codestyle)
  • mto: This revision was merged to the branch mainline in revision 266.
  • Revision ID: jay@mysql.com-20080806205754-shtn6qslum09n9x9
* Added Doxyfile configuration for doxygen builds
* Update Makefile with a make doxygen command
* Note that doxygen as run with the Doxyfile requires Graphviz to be installed

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
# LIBTOOLIZE=${LIBTOOLIZE:-libtoolize}
8
8
LIBTOOLIZE_FLAGS=" --automake --copy --force"
9
9
# ACLOCAL=${ACLOCAL:-aclocal}
10
 
ACLOCAL_FLAGS="-I m4"
11
10
# AUTOHEADER=${AUTOHEADER:-autoheader}
12
11
# AUTOMAKE=${AUTOMAKE:-automake}
13
 
# --add-missing instructs automake to install missing auxiliary files
14
 
# --copy tells it to make copies and not symlinks
15
12
AUTOMAKE_FLAGS="--add-missing --copy --force"
16
13
# AUTOCONF=${AUTOCONF:-autoconf}
17
14
 
42
39
    LIBTOOLIZE=libtoolize
43
40
  elif test \! "x`which glibtoolize 2> /dev/null | grep -v '^no'`" = x; then
44
41
    LIBTOOLIZE=glibtoolize
45
 
  else
 
42
  else 
46
43
    echo "libtoolize 1.5.x wasn't found, exiting"; exit 1
47
44
  fi
48
45
fi
98
95
fi
99
96
 
100
97
 
 
98
run $ACLOCAL $ACLOCAL_FLAGS || die "Can't execute aclocal"
 
99
run $AUTOHEADER || die "Can't execute autoheader"
 
100
 
101
101
# --force means overwrite ltmain.sh script if it already exists 
102
102
run $LIBTOOLIZE $LIBTOOLIZE_FLAGS || die "Can't execute libtoolize"
103
103
 
104
 
run $ACLOCAL $ACLOCAL_FLAGS || die "Can't execute aclocal"
105
 
run $AUTOHEADER || die "Can't execute autoheader"
 
104
# --add-missing instructs automake to install missing auxiliary files
 
105
# and --force to overwrite them if they already exist
106
106
run $AUTOMAKE $AUTOMAKE_FLAGS  || die "Can't execute automake"
107
107
run $AUTOCONF || die "Can't execute autoconf"
108
108
echo -n "Automade with: "