source: git/for_Hans_with_love.sh @ 3af3ca

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