a7ab0acfe8
git-svn-id: https://pupnp.svn.sourceforge.net/svnroot/pupnp/branches/branch-1.4.x@168 119443c7-1b9e-41f8-b6fc-b9c35fce742c
16 lines
233 B
Bash
Executable File
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
|
|
|