File: bootstrap

package info (click to toggle)
chillispot 1.0-4
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 2,316 kB
  • ctags: 1,721
  • sloc: ansic: 11,622; sh: 8,751; perl: 352; makefile: 63
file content (28 lines) | stat: -rwxr-xr-x 484 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#! /bin/sh

# bootstrap - Execute relevant autotools scripts 

# After running this script the directory is ready for distribution as
# a tarball. It should also be executed before checking milestones
# into CVS.

# After executing this script the project can be build by executing:
# ./configure
# make
# make install

find . -exec chmod go-w '{}' \;

aclocal
autoheader
touch config.h.in
automake
autoconf
./configure
make clean

rm config.status
rm libtool
rm -r autom4te.cache/