File: bootstrap.sh

package info (click to toggle)
garli 2.1-9
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 5,888 kB
  • sloc: cpp: 34,419; sh: 11,026; makefile: 103
file content (13 lines) | stat: -rwxr-xr-x 425 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh
# This script should be run  whenever the inputs to autoconf/automake change 
#	(namely the configure.ac file or the m4 macros in config/m4)
# It appears that the autogenerated Makefiles enough contain dependency 
#		information to know that it needs to run automake and config.status
#		whenever an Makefile.am changes.

set -x
aclocal -I config || exit
autoheader || exit
automake --add-missing || exit
autoconf