cmake instead of make, autogen instead of configure

SVN revision: 7501
This commit is contained in:
atmosphere 2003-10-03 22:29:49 +00:00 committed by atmosphere
parent c307b044d0
commit b6c990edae
1 changed files with 7 additions and 4 deletions

View File

@ -1,6 +1,9 @@
#!/bin/sh
cmake clean distclean
rm config.cache
./configure \
if [ -f ./Makefile ]; then
make clean distclean
fi
if [ -f ./config.cache ]; then
rm config.cache
fi
./autogen.sh \
$@