autogen.sh
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:1k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. #!/bin/sh
  2. #
  3. echo "Generating build information using aclocal, automake and autoconf"
  4. echo "This may take a while ..."
  5. # Touch the timestamps on all the files since CVS messes them up
  6. directory=`dirname $0`
  7. touch $directory/configure.in
  8. # Regenerate configuration files
  9. aclocal
  10. automake --foreign --include-deps --add-missing --copy
  11. autoconf
  12. (cd test; aclocal; automake --foreign --include-deps --add-missing --copy; autoconf)
  13. # Run configure for this platform
  14. #./configure $*
  15. echo "Now you are ready to run ./configure"