mirror of
https://github.com/libfuse/libfuse.git
synced 2024-11-24 04:34:13 +08:00
16 lines
355 B
Bash
Executable File
16 lines
355 B
Bash
Executable File
#! /bin/sh
|
|
|
|
echo "NOTE: this script is obsolete. Use autoreconf instead!"
|
|
echo Running libtoolize...
|
|
libtoolize --automake
|
|
echo Running aclocal...
|
|
aclocal
|
|
echo Running autoheader...
|
|
autoheader
|
|
echo Running autoconf...
|
|
autoconf
|
|
echo Running automake...
|
|
automake -a -c
|
|
rm -f config.cache config.status
|
|
echo "To compile run './configure', and then 'make'."
|