source: git/for_Hans_with_love.sh @ 03f7b5

spielwiese
Last change on this file since 03f7b5 was ab788d, checked in by Oleksandr Motsak <motsak@…>, 13 years ago
CHG: minor build system improvements
  • Property mode set to 100755
File size: 512 bytes
Line 
1#!/bin/sh
2
3TOP_DIR=$PWD
4
5autotools ()
6{
7  aclocal -I $TOP_DIR/m4
8  autoheader
9  autoconf
10  automake -a
11}
12
13
14for d in . factory libpolys; do
15  echo "==============="
16  echo "run libtoolize --force, aclocal -I $TOP_DIR/m4, autoconf, automake -a in $d"
17  echo "---------------"
18  cd $d
19  libtoolize --force
20  autotools
21  cd $TOP_DIR
22  echo
23done
24
25for d in omalloc; do
26  echo "==============="
27  echo "run aclocal -I $TOP_DIR/m4, autotools in $d"
28  echo "---------------"
29  cd $d
30  autotools
31  cd $TOP_DIR
32  echo
33done
Note: See TracBrowser for help on using the repository browser.