File: autogen.sh

package info (click to toggle)
gwave 20031224-3
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 2,508 kB
  • ctags: 1,065
  • sloc: ansic: 8,029; lisp: 1,619; sh: 1,202; makefile: 167
file content (20 lines) | stat: -rwxr-xr-x 657 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
## autogen.sh - generate all the twisty little files.

# Generate aclocal.m4 from configure.in
aclocal

# Generate Makefile.in's from Makefile.am's and configure.in
# (adding missing files that may be needed for proper operation)
automake --add-missing --gnu

# Generate config.h.in from acconfig.h and configure.in
autoheader

# Generate configure from configure.in and aclocal.m4
autoconf

# run ./config.status, if it exists, to create new Makefiles in subdirectories.
# (Note that this only is useful if builddir == scrdir, otherwise the
#  user may need to run config.status from their builddir(s) manually)
test -x ./config.status && ./config.status