mirror of
https://github.com/mariusgreuel/avrdude.git
synced 2025-09-27 14:35:27 +00:00
no longer experience the day-to-day incompatibilities we've been faced with some 5+ years ago. git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@960 81a1dc3b-b13d-400b-aceb-764788c761c2
20 lines
313 B
Bash
Executable File
20 lines
313 B
Bash
Executable File
#! /bin/sh
|
|
|
|
: ${AUTOHEADER="autoheader${AC_VER}"}
|
|
: ${AUTOCONF="autoconf${AC_VER}"}
|
|
: ${ACLOCAL="aclocal${AM_VER}"}
|
|
: ${AUTOMAKE="automake${AM_VER}"}
|
|
|
|
export ACLOCAL AUTOHEADER AUTOCONF AUTOMAKE
|
|
|
|
# Bootstrap the build system.
|
|
|
|
set -x
|
|
|
|
rm -rf autom4te.cache
|
|
|
|
${ACLOCAL}
|
|
${AUTOHEADER}
|
|
${AUTOCONF}
|
|
${AUTOMAKE} -a -c
|