configure.ac 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. #----------------------------------------------------------------
  2. #
  3. # configure.ac
  4. #
  5. # Autoconf source file for Boundary Element MMTL (bem).
  6. # This file, along with aclocal, autoconf, Makefile.am,
  7. # and automake can produce a highly functional configuration
  8. # script and Makefile.
  9. #
  10. # Sharon Zahn, Bob Techentin
  11. # October 3, 2002
  12. #
  13. # Copyright 2002-2004 Mayo Foundation. All Rights Reserved.
  14. # $Id: configure.ac,v 1.3 2004/02/05 22:24:23 techenti Exp $
  15. #
  16. #----------------------------------------------------------------
  17. #----------------------------------------------------------------
  18. # Declare the package name and version.
  19. # All the bouquets and brickbats go to Sharon. :-)
  20. #----------------------------------------------------------------
  21. AC_INIT(UNITS, 1.0, zahn.sharon@mayo.edu)
  22. #----------------------------------------------------------------
  23. # Give autoconf a point of reference, and tell it that
  24. # we're going to use automake later.
  25. #----------------------------------------------------------------
  26. AC_CONFIG_SRCDIR
  27. AM_INIT_AUTOMAKE
  28. #----------------------------------------------------------------
  29. # Don't bother checking for host type, libraries, or
  30. # header file variations, as we're just dealing
  31. # with highly portable scripts at this level.
  32. #----------------------------------------------------------------
  33. AC_CONFIG_FILES([Makefile])
  34. AC_OUTPUT