source: git/for_Hans_with_love.sh @ af8c79

spielwiese
Last change on this file since af8c79 was af8c79, checked in by Mohamed Barakat <mohamed.barakat@…>, 13 years ago
fixed typo in reporter/Makefile.am
  • Property mode set to 100755
File size: 514 bytes
Line 
1#!/bin/sh
2
3autotools (){
4aclocal
5autoheader
6autoconf
7automake -a
8}
9
10TOP_DIR=$PWD
11
12for d in . libpolys; do
13  echo "==============="
14  echo "run aclocal, autoconf in $d"
15  echo "---------------"
16  cd $d;
17  aclocal
18  autoconf
19  automake -a
20  cd $TOP_DIR
21  echo
22done
23
24for d in omalloc libpolys/misc libpolys/resources libpolys/reporter libpolys/coeffs libpolys/polys; do
25  echo "==============="
26  echo "run aclocal, autoheader, autoconf in $d"
27  echo "---------------"
28  cd $d;
29  autotools
30  cd $TOP_DIR
31  echo
32done
33
Note: See TracBrowser for help on using the repository browser.