home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 6 / AACD06.ISO / AACD / System / Mesa-3.1 / bootstrap < prev    next >
Text File  |  1999-09-23  |  251b  |  14 lines

  1. #! /bin/sh
  2.  
  3. # helps bootstrapping Mesa, when checked out from CVS
  4. # requires GNU autoconf and GNU automake
  5. # this is not meant to go into the distributions
  6.  
  7. test -f ltmain.sh || libtoolize -c -f
  8. aclocal -I .
  9. autoheader
  10. automake -a -c
  11. autoconf
  12.  
  13. exit 0
  14.