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