Changeset 4df5bd in git
- Timestamp:
- Oct 13, 2011, 7:02:58 PM (11 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- 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
- Files:
-
- 1 added
- 4 deleted
- 2 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
Makefile.am
r3af3ca r4df5bd 16 16 17 17 # libfac doesn't use automake, just include it all in tarball 18 EXTRA_DIST = libfac 18 EXTRA_DIST = libfac autogen.sh -
for_Hans_with_love.sh
r3af3ca r4df5bd 1 1 #!/bin/sh 2 2 3 TOP_DIR=$PWD 3 echo "NOTE: This script is obsolete! Please use autogen.sh instead." 4 4 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.