Changeset 4df5bd in git for for_Hans_with_love.sh


Ignore:
Timestamp:
Oct 13, 2011, 7:02:58 PM (12 years ago)
Author:
Oleksandr Motsak <motsak@…>
Branches:
(u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
Children:
ec27f7a0c1d8e138343bbe71c30160845247bde8
Parents:
3af3ca8db257c2efa6047d040c31ad7fb39777c4
git-author:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-10-13 19:02:58+02:00
git-committer:
Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 16:14:01+01:00
Message:
ADD: one can use autoreconf, for instance as via autogen.sh for generating a buildsystem
RM: INSTALL/mkinstalldirs/install-sh are generated automatically by autotools
CHG: please use autogen.sh instead of for_Hans_with_love.sh
File:
1 edited

Legend:

Unmodified
Added
Removed
  • for_Hans_with_love.sh

    r3af3ca r4df5bd  
    11#!/bin/sh
    22
    3 TOP_DIR=$PWD
     3echo "NOTE: This script is obsolete! Please use autogen.sh instead."
    44
    5 autotools ()
    6 {
    7   aclocal -I $TOP_DIR/m4
    8   autoheader
    9   autoconf
    10   automake -a
    11 }
    12 
    13 
    14 for 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
    23 done
    24 
    25 for 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
    33 done
     5./autogen.sh
Note: See TracChangeset for help on using the changeset viewer.