spielwiese
Last change
on this file since 089d1f was
d2f9df,
checked in by Martin Lee <martinlee84@…>, 12 years ago
|
configure changes of factory of Jan Engelhardt
|
-
Property mode set to
100755
|
File size:
531 bytes
|
Line | |
---|
1 | #!/bin/sh |
---|
2 | |
---|
3 | autotools (){ |
---|
4 | autoheader |
---|
5 | autoconf |
---|
6 | automake -a |
---|
7 | } |
---|
8 | |
---|
9 | TOP_DIR=$PWD |
---|
10 | |
---|
11 | for d in . libpolys factory; do |
---|
12 | echo "===============" |
---|
13 | echo "run libtoolize --force, aclocal -I $TOP_DIR/m4, autoconf, automake -a in $d" |
---|
14 | echo "---------------" |
---|
15 | cd $d; |
---|
16 | libtoolize --force |
---|
17 | aclocal -I $TOP_DIR/m4 |
---|
18 | autotools |
---|
19 | cd $TOP_DIR |
---|
20 | echo |
---|
21 | done |
---|
22 | |
---|
23 | for d in omalloc; do |
---|
24 | echo "===============" |
---|
25 | echo "run aclocal -I $TOP_DIR/m4, autotools in $d" |
---|
26 | echo "---------------" |
---|
27 | cd $d; |
---|
28 | aclocal -I $TOP_DIR/m4 |
---|
29 | autotools |
---|
30 | cd $TOP_DIR |
---|
31 | echo |
---|
32 | done |
---|
Note: See
TracBrowser
for help on using the repository browser.