File: bootstrap

package info (click to toggle)
avrdude 5.10-3
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 2,924 kB
  • ctags: 2,011
  • sloc: ansic: 20,609; sh: 3,785; yacc: 1,251; lex: 259; makefile: 174
file content (44 lines) | stat: -rwxr-xr-x 1,131 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#! /bin/sh

# autoconf-2.59 or 2.61, 2.62 is known to work

: ${AUTOHEADER="autoheader${AC_VER}"}
: ${AUTOCONF="autoconf${AC_VER}"}

# automake-1.9.x or 1.10 is known to work

: ${ACLOCAL="aclocal${AM_VER}"}
: ${AUTOMAKE="automake${AM_VER}"}

# Verify autoconf version

AUTOCONF_VER=`(${AUTOCONF} --version 2>/dev/null | head -n 1 | \
              cut -d ' ' -f 4) 2>/dev/null`
if [ "$AUTOCONF_VER" != "2.59" -a "$AUTOCONF_VER" != "2.61" -a "$AUTOCONF_VER" != "2.62" ]
then
	echo "Warning: This program is tested with autoconf version 2.59, 2.61 and 2.62."
	echo "You are using `${AUTOCONF} --version | head -n 1`."
fi

# Verify automake version

AUTOMAKE_VER=`(${AUTOMAKE} --version | head -n 1 | \
              cut -d ' ' -f 4 | cut -d '.' -f -2) 2>/dev/null`
if [ "$AUTOMAKE_VER" != "1.9" -a "$AUTOMAKE_VER" != "1.10" ]
then
	echo "Warning: This program is tested with automake version 1.9 and 1.10."
	echo "You are using `${AUTOMAKE} --version | head -n 1`."
fi

export ACLOCAL AUTOHEADER AUTOCONF AUTOMAKE

# Bootstrap the build system.

set -x

rm -rf autom4te.cache

${ACLOCAL}
${AUTOHEADER}
${AUTOCONF}
${AUTOMAKE} -a -c