Skip to content

Latest commit

 

History

History
executable file
·
11 lines (9 loc) · 283 Bytes

autogen.sh

File metadata and controls

executable file
·
11 lines (9 loc) · 283 Bytes
 
Apr 26, 2001
Apr 26, 2001
1
2
#!/bin/sh
#
Feb 16, 2006
Feb 16, 2006
3
echo "Generating build information using aclocal and autoconf"
Apr 26, 2001
Apr 26, 2001
4
5
6
echo "This may take a while ..."
# Regenerate configuration files
Feb 16, 2006
Feb 16, 2006
7
8
(aclocal && autoconf) || exit $?
(cd test; aclocal; autoconf)
Apr 26, 2001
Apr 26, 2001
9
10
11
# Run configure for this platform
echo "Now you are ready to run ./configure"