File: autogen.sh

package info (click to toggle)
svox 1.0%2Bgit20110131-2
  • links: PTS, VCS
  • area: non-free
  • in suites: wheezy
  • size: 55,900 kB
  • sloc: ansic: 33,638; cpp: 2,013; xml: 784; perl: 498; java: 440; sh: 436; makefile: 99
file content (36 lines) | stat: -rw-r--r-- 535 bytes parent folder | download | duplicates (2)
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
#!/bin/sh

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

#created by libtoolize
rm -rf 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

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

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

IPATHS="-I lib"

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

rm -rf autom4te.cache

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