You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
442 B
37 lines
442 B
10 years ago
|
#!/bin/sh
|
||
|
|
||
|
which autoconf
|
||
|
if ! test $? -eq 0
|
||
|
then
|
||
|
echo "error, install autoconf"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
which automake
|
||
|
if ! test $? -eq 0
|
||
|
then
|
||
|
echo "error, install automake"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
which libtool
|
||
|
if ! test $? -eq 0
|
||
|
then
|
||
|
echo "error, install libtool"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
which pkg-config
|
||
|
if ! test $? -eq 0
|
||
|
then
|
||
|
echo "error, install pkg-config"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
touch configure.ac
|
||
|
touch NEWS
|
||
|
touch AUTHORS
|
||
|
touch README
|
||
|
touch ChangeLog
|
||
|
autoreconf -fvi
|