summaryrefslogtreecommitdiff
path: root/misc/tools/kconfig-frontends/bootstrap
blob: b9dcbaf6229be8c6ee1378eea0000a6bcebb0046 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/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"