source: git/for_Hans_with_love.sh @ 57592b3

fieker-DuValspielwiese
Last change on this file since 57592b3 was 964389, checked in by Oleksandr Motsak <motsak@…>, 13 years ago
ADD: add INSTALL_PREFIX macro into config.h and to the search path
  • Property mode set to 100755
File size: 936 bytes
RevLine 
[ce2120e]1#!/bin/sh
2
3autotools (){
4autoheader
5autoconf
6automake -a
7}
8
9TOP_DIR=$PWD
10
[d11524]11for d in .; do
[af8c79]12  echo "==============="
[d11524]13  echo "run aclocal -I $TOP_DIR/m4, autoconf, automake -a in $d"
[af8c79]14  echo "---------------"
15  cd $d;
[4aa8610]16  aclocal -I $TOP_DIR/m4
[af8c79]17  autoconf
18  automake -a
19  cd $TOP_DIR
20  echo
21done
22
[720156]23for d in omalloc; do
[d11524]24  echo "==============="
25  echo "run aclocal -I $TOP_DIR/m4, autotools in $d"
[ce2120e]26  echo "---------------"
27  cd $d;
[4aa8610]28  aclocal -I $TOP_DIR/m4
[ab4f17]29  autotools
30  cd $TOP_DIR
31  echo
32done
33
[769f28]34for d in factory; do
35  echo "==============="
[e76d7a6]36  echo "run aclocal -I $TOP_DIR/m4, autotools in $d"
[769f28]37  echo "---------------"
38  cd $d;
39  aclocal -I $TOP_DIR/m4
[e76d7a6]40  autotools
[769f28]41  cd $TOP_DIR
42  echo
43done
44
[ec0d9b]45for d in libpolys; do
[ab4f17]46  echo "==============="
[ec0d9b]47  echo "run libtoolize --force, aclocal -I $TOP_DIR/m4, autotools in $d"
[ab4f17]48  echo "---------------"
49  cd $d;
[ec0d9b]50  libtoolize --force
[8184703]51  aclocal -I $TOP_DIR/m4
[964389]52  autoheader
[ce2120e]53  autotools
54  cd $TOP_DIR
55  echo
56done
57
Note: See TracBrowser for help on using the repository browser.