configure.ac 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. #----------------------------------------------------------------
  2. #
  3. # configure.ac
  4. #
  5. # Autoconf source file for the sppdgTcllib library
  6. #
  7. # This file, along with aclocal, autoconf, Makefile.am,
  8. # and automake can produce a highly functional configuration
  9. # script and Makefile.
  10. #
  11. # Bob Techentin
  12. # January 22, 2004
  13. # Copyright 2004 Mayo Foundation. All Rights Reserved
  14. #
  15. # $Id: configure.ac,v 1.2 2004/05/10 18:46:27 schrauf Exp $
  16. #
  17. #----------------------------------------------------------------
  18. #----------------------------------------------------------------
  19. # Declare the package name and version.
  20. # All the bouquets and brickbats go to Bob. :-)
  21. #----------------------------------------------------------------
  22. AC_INIT(sppdgTcllib, 1.0, techentin.robert@mayo.edu)
  23. #----------------------------------------------------------------
  24. # Give autoconf a point of reference, and tell it that
  25. # we're going to use automake later.
  26. #----------------------------------------------------------------
  27. AC_CONFIG_SRCDIR
  28. AM_INIT_AUTOMAKE(sppdgTcllib, 1.0)
  29. #---------------------------------------------------------------
  30. # Install these subdirectories
  31. #---------------------------------------------------------------
  32. AC_CONFIG_SUBDIRS(console getFilePreview sgraph addressDialog)
  33. AC_CONFIG_FILES([Makefile])
  34. AC_OUTPUT