File: bootstrap

package info (click to toggle)
nc6 1.0-3
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 2,112 kB
  • ctags: 1,578
  • sloc: ansic: 12,966; sh: 6,695; makefile: 493; yacc: 288; sed: 16
file content (14 lines) | stat: -rwxr-xr-x 259 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#! /bin/sh
# bootstrap -- again, this is taken from Gary V. Vaughan's
# excellent autotools book (http://sources.redhat.com/autotools).

## @start 1
#! /bin/sh

set -x
autopoint
aclocal -I config $@
autoheader
automake --add-missing --copy
autoconf
## @end 1