source: git/for_Hans_with_love.sh @ ce2120e

spielwiese
Last change on this file since ce2120e was ce2120e, checked in by Mohamed Barakat <mohamed.barakat@…>, 13 years ago
created for_Hans_with_love.sh build script . added polys to libpolys/Makefile.am and to libpolys/configure.ac . updated libpolys/polys/Makefile.am . updated libpolys/polys/configure.ac . cleaned up libpolys/resources/configure.ac . updated libpolys/resources/feResource.h
  • Property mode set to 100755
File size: 344 bytes
Line 
1#!/bin/sh
2
3autotools (){
4aclocal
5autoheader
6autoconf
7automake -a
8}
9
10TOP_DIR=$PWD
11
12for d in . omalloc libpolys/ libpolys/misc libpolys/resources libpolys/reporter libpolys/coeffs libpolys/polys; do
13  echo "==============="
14  echo "run aclocal, autoheader, autoconf in $d"
15  echo "---------------"
16  cd $d;
17  autotools
18  cd $TOP_DIR
19  echo
20done
21
Note: See TracBrowser for help on using the repository browser.