You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
431 B
22 lines
431 B
#!/bin/sh |
|
set -e |
|
|
|
printf "Running libtoolize...\n" |
|
libtoolize --copy --force |
|
|
|
printf "Running aclocal...\n" |
|
aclocal -Wall --force |
|
|
|
printf "Running autoconf...\n" |
|
autoconf -Wall --force |
|
|
|
printf "Running autoheader...\n" |
|
autoheader -Wall --force |
|
|
|
printf "Running automake...\n" |
|
automake --foreign --add-missing --copy -Wall --force |
|
|
|
# Cleanup the mess... :-( |
|
rm -rf autom4te.cache |
|
|
|
printf "Done. You may now run:\n ./configure\n"
|
|
|