File: reconf

package info (click to toggle)
libbrahe 1.3.2-4
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,680 kB
  • ctags: 256
  • sloc: sh: 10,246; ansic: 1,289; cpp: 274; makefile: 121
file content (17 lines) | stat: -rwxr-xr-x 396 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh
#
#-- remove old configuration files
#
rm -f depcomp missing install-sh mkinstalldirs libtool acconfig.h
rm -f aclocal.m4 configure Makefile.in config.guess config.cache ltmain.sh config.sub
rm -rf autom4te.cache Makefile Makefile.in *.lo
#
#-- regenerate configuration
#
aclocal 2> /dev/null
libtoolize --force
automake --foreign --copy --add-missing
autoconf
./configure $1
#
#-- end