File: autogen.sh

package info (click to toggle)
svox 1.0%2Bgit20130326-13
  • links: PTS, VCS
  • area: non-free
  • in suites: bookworm
  • size: 62,260 kB
  • sloc: ansic: 33,732; cpp: 2,726; java: 1,529; xml: 1,328; perl: 498; sh: 438; makefile: 110
file content (38 lines) | stat: -rw-r--r-- 574 bytes parent folder | download | duplicates (6)
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
29
30
31
32
33
34
35
36
37
38
#!/bin/sh

#created by aclocal
rm -rf autom4te.cache
rm -f aclocal.m4

#created by libtoolize
rm -rf m4
mkdir m4
rm -f ltmain.sh

#created by autoconf
rm -f configure

#created by automake
rm -f install-sh missing depcomp Makefile.in config.guess config.sub
rm -f INSTALL COPYING compile

#created by ./configure
rm -rf .deps
rm -f Makefile config.log config.status libtool

if [ "$1" = "clean" ]; then
    exit
fi

IPATHS="-I lib"

libtoolize
aclocal $IPATHS
automake --add-missing
autoconf $IPATHS

rm -rf autom4te.cache

echo "Now run ./configure and then make."
exit 0