|
Revision 97, 0.5 kB
(checked in by jan, 4 years ago)
|
|
fixed message to print configure + make
|
-
Property svn:executable set to
*
|
| Line | |
|---|
| 1 | #!/bin/sh |
|---|
| 2 | # Run this to generate all the initial makefiles, etc. |
|---|
| 3 | |
|---|
| 4 | LIBTOOLIZE=${LIBTOOLIZE:-libtoolize} |
|---|
| 5 | LIBTOOLIZE_FLAGS="--copy --force" |
|---|
| 6 | ACLOCAL=${ACLOCAL:-aclocal} |
|---|
| 7 | AUTOHEADER=${AUTOHEADER:-autoheader} |
|---|
| 8 | AUTOMAKE=${AUTOMAKE:-automake} |
|---|
| 9 | AUTOMAKE_FLAGS="--add-missing --copy" |
|---|
| 10 | AUTOCONF=${AUTOCONF:-autoconf} |
|---|
| 11 | |
|---|
| 12 | ARGV0=$0 |
|---|
| 13 | |
|---|
| 14 | set -e |
|---|
| 15 | |
|---|
| 16 | |
|---|
| 17 | run() { |
|---|
| 18 | echo "$ARGV0: running \`$@'" |
|---|
| 19 | $@ |
|---|
| 20 | } |
|---|
| 21 | |
|---|
| 22 | run $LIBTOOLIZE $LIBTOOLIZE_FLAGS |
|---|
| 23 | run $ACLOCAL $ACLOCAL_FLAGS |
|---|
| 24 | run $AUTOHEADER |
|---|
| 25 | run $AUTOMAKE $AUTOMAKE_FLAGS |
|---|
| 26 | run $AUTOCONF |
|---|
| 27 | echo "Now type './configure ...' and 'make' to compile." |
|---|