File: autogen.sh

package info (click to toggle)
makebootfat 1.4-4
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 2,736 kB
  • ctags: 357
  • sloc: sh: 3,124; ansic: 2,746; asm: 148; makefile: 94
file content (17 lines) | stat: -rwxr-xr-x 402 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh
#
echo "Generating build information using aclocal, automake and autoconf"
echo "This may take a while ..."

# Touch the timestamps on all the files since CVS messes them up
touch configure.ac

# Regenerate configuration files
aclocal
automake --add-missing --force-missing
autoconf
autoheader && touch config.h

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