File: rebuild

package info (click to toggle)
libzia 4.09-1
  • links: PTS
  • area: main
  • in suites: buster
  • size: 3,012 kB
  • ctags: 1,950
  • sloc: ansic: 20,429; sh: 11,107; makefile: 190
file content (15 lines) | stat: -rwxr-xr-x 305 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash
rm -f config.log config.cache config.h

aclocal 
libtoolize --force --copy
automake --add-missing
automake -c -a

dirs=`grep ^SUBDIRS Makefile.am|sed 's/.*=//'`
for dir in $dirs; do
    echo automake $dir/Makefile
    automake $dir/Makefile
done

autoconf && ./configure && make clean && make