mirror of
https://github.com/davea42/libdwarf-code.git
synced 2025-10-16 06:07:31 +08:00

an updated target version 0.3.1. modified: README modified: README.md Removing a comment line. modified: autogen.sh
14 lines
403 B
Bash
14 lines
403 B
Bash
#!/bin/sh
|
|
# Generates Makefiles and more.
|
|
|
|
srcdir=`dirname $0`
|
|
(autoconf --version) < /dev/null > /dev/null 2>&1 || {
|
|
echo
|
|
echo "You must have autoconf installed to compile $PROJECT."
|
|
echo "Download the appropriate package for your distribution,"
|
|
echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/"
|
|
exit 1
|
|
}
|
|
set -e -x
|
|
autoreconf --warnings=all --install --verbose --force
|