mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-04-14 10:07:39 +08:00
git-svn-id: http://svn.code.sf.net/p/nuttx/code/trunk@5327 42af7a65-404d-4744-a932-0658087f49c3
23 lines
431 B
Bash
Executable File
23 lines
431 B
Bash
Executable File
#!/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"
|