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 #!/bin/sh
if [ -f ./Makefile ]; then
cmake clean distclean make clean distclean
rm config.cache fi
./configure \ if [ -f ./config.cache ]; then
rm config.cache
fi
./autogen.sh \
$@ $@