File: bootstrap

package info (click to toggle)
nitrogen 1.3-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 1,224 kB
  • ctags: 360
  • sloc: sh: 9,396; cpp: 1,854; ansic: 333; makefile: 88; sed: 16
file content (17 lines) | stat: -rwxr-xr-x 259 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

sh() {
  /bin/sh -c "set -x; $*"
}

export WANT_AUTOMAKE=1.9

sh libtoolize --copy --force --automake
sh aclocal
sh autoconf
sh autoheader
sh automake --include-deps --add-missing --copy

echo
echo You are now ready to run ./configure
echo enjoy!