File: autogen.sh

package info (click to toggle)
talloc 1.2.0~git20080616-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 1,428 kB
  • ctags: 1,019
  • sloc: ansic: 8,394; sh: 2,772; xml: 738; makefile: 143
file content (14 lines) | stat: -rwxr-xr-x 261 bytes parent folder | download | duplicates (20)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

rm -rf autom4te.cache
rm -f configure config.h.in

IPATHS="-I libreplace -I lib/replace -I ../libreplace -I ../replace"
autoconf $IPATHS || exit 1
autoheader $IPATHS || exit 1

rm -rf autom4te.cache

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