source: git/for_Hans_with_love.sh @ 4aa8610

spielwiese
Last change on this file since 4aa8610 was 4aa8610, checked in by Mohamed Barakat <mohamed.barakat@…>, 13 years ago
created libpolys/tests and set up the beginning of a test-suite using cxxtest
  • Property mode set to 100755
File size: 897 bytes
Line 
1#!/bin/sh
2
3echo "==============="
4echo "run libtoolize in libpolys/polys/"
5echo "---------------"
6( cd libpolys/polys/; libtoolize; )
7
8autotools (){
9autoheader
10autoconf
11automake -a
12}
13
14TOP_DIR=$PWD
15
16for d in . libpolys; do
17  echo "==============="
18  echo "run aclocal, autoconf in $d"
19  echo "---------------"
20  cd $d;
21  aclocal -I $TOP_DIR/m4
22  autoconf
23  automake -a
24  cd $TOP_DIR
25  echo
26done
27
28for d in omalloc libpolys/misc libpolys/resources libpolys/reporter libpolys/coeffs; do
29  echo "==============="
30  echo "run aclocal -I $TOP_DIR/m4, autoheader, autoconf in $d"
31  echo "---------------"
32  cd $d;
33  aclocal -I $TOP_DIR/m4
34  autotools
35  cd $TOP_DIR
36  echo
37done
38
39for d in libpolys/polys; do
40  echo "==============="
41  echo "run aclocal -I $TOP_DIR/m4 -I m4, autoheader, autoconf in $d"
42  echo "---------------"
43  cd $d;
44  aclocal -I $TOP_DIR/m4 -I m4
45  autotools
46  cd $TOP_DIR
47  echo
48done
49
Note: See TracBrowser for help on using the repository browser.