source: git/for_Hans_with_love.sh @ f47f56

spielwiese
Last change on this file since f47f56 was f47f56, checked in by Mohamed Barakat <mohamed.barakat@…>, 13 years ago
- introduced libtools in libpolys/polys - enables the compilation of the dynamic modules in libpolys/polys/templates - replaced p_Procs_Dynamic.in by p_Procs.inc in templates/p_Procs_Lib.cc
  • Property mode set to 100755
File size: 639 bytes
Line 
1#!/bin/sh
2
3echo "==============="
4echo "run libtootlize in libpolys/polys/"
5echo "---------------"
6( cd libpolys/polys/; libtoolize; )
7
8autotools (){
9aclocal
10autoheader
11autoconf
12automake -a
13}
14
15TOP_DIR=$PWD
16
17for d in . libpolys; do
18  echo "==============="
19  echo "run aclocal, autoconf in $d"
20  echo "---------------"
21  cd $d;
22  aclocal
23  autoconf
24  automake -a
25  cd $TOP_DIR
26  echo
27done
28
29for d in omalloc libpolys/misc libpolys/resources libpolys/reporter libpolys/coeffs libpolys/polys; do
30  echo "==============="
31  echo "run aclocal, autoheader, autoconf in $d"
32  echo "---------------"
33  cd $d;
34  autotools
35  cd $TOP_DIR
36  echo
37done
38
Note: See TracBrowser for help on using the repository browser.