Skip to content

Commit

Permalink
Restore autogen.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
amadvance committed Dec 4, 2016
1 parent 5e5607b commit ce960c0
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions autogen.sh
Original file line number Diff line number Diff line change
@@ -1,10 +1,18 @@
#!/bin/sh
#
echo "Generating build information using autoreconf"
echo "Generating build information using autoconf"
echo "This may take a while ..."

# All is done by autoreconf
autoreconf -f -i
# Touch the timestamps on all the files since CVS messes them up
touch configure.ac

# Regenerate configuration files
# Note that we cannot use autoreconf because it won't call automake
# to add missing files, because we don't use automake
aclocal
automake --add-missing --force-missing 2>/dev/null
autoconf
autoheader && touch advance/lib/config.hin

# Run configure for this platform
echo "Now you are ready to run ./configure"

0 comments on commit ce960c0

Please sign in to comment.