source: git/for_Hans_with_love.sh @ e76d7a6

spielwiese
Last change on this file since e76d7a6 was e76d7a6, checked in by Mohamed Barakat <mohamed.barakat@…>, 13 years ago
just to get this out of the way, i need to catch my train
  • Property mode set to 100755
File size: 923 bytes
Line 
1#!/bin/sh
2
3autotools (){
4autoheader
5autoconf
6automake -a
7}
8
9TOP_DIR=$PWD
10
11for d in .; do
12  echo "==============="
13  echo "run aclocal -I $TOP_DIR/m4, autoconf, automake -a in $d"
14  echo "---------------"
15  cd $d;
16  aclocal -I $TOP_DIR/m4
17  autoconf
18  automake -a
19  cd $TOP_DIR
20  echo
21done
22
23for d in omalloc; do
24  echo "==============="
25  echo "run aclocal -I $TOP_DIR/m4, autotools in $d"
26  echo "---------------"
27  cd $d;
28  aclocal -I $TOP_DIR/m4
29  autotools
30  cd $TOP_DIR
31  echo
32done
33
34for d in factory; do
35  echo "==============="
36  echo "run aclocal -I $TOP_DIR/m4, autotools in $d"
37  echo "---------------"
38  cd $d;
39  aclocal -I $TOP_DIR/m4
40  autotools
41  cd $TOP_DIR
42  echo
43done
44
45for d in libpolys; do
46  echo "==============="
47  echo "run libtoolize --force, aclocal -I $TOP_DIR/m4, autotools in $d"
48  echo "---------------"
49  cd $d;
50  libtoolize --force
51  aclocal -I $TOP_DIR/m4
52  autotools
53  cd $TOP_DIR
54  echo
55done
56
Note: See TracBrowser for help on using the repository browser.