libupnp/bootstrap
Marcelo Roberto Jimenez a7ab0acfe8 Merge of trunk into branch-1.4.x.
git-svn-id: https://pupnp.svn.sourceforge.net/svnroot/pupnp/branches/branch-1.4.x@168 119443c7-1b9e-41f8-b6fc-b9c35fce742c
2007-04-28 19:36:19 +00:00

16 lines
233 B
Bash
Executable File

#!/bin/sh
rm -fr autom4te.cache
# Equivalent to
# aclocal
# autoheader
# automake --add-missing --copy
# autoconf
autoreconf --force --install -Wall -Wno-obsolete $* || exit 1
echo "Now run ./configure and then make."
exit 0