I don't think everyone has cmake, if this is a bad idea, feel free to

revert.


SVN revision: 7500
This commit is contained in:
atmosphere 2003-10-03 22:27:51 +00:00 committed by atmosphere
parent 7e7a3e88b4
commit c307b044d0
1 changed files with 8 additions and 3 deletions

View File

@ -1,8 +1,13 @@
#!/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 \
--enable-ecore-x \
--enable-ecore-evas \
--enable-ecore-evas-gl \