Makefile.am 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. #----------------------------------------------------------------
  2. #
  3. # Makefile.am
  4. #
  5. # Automake source file for the Console package wrapped
  6. # around Tkcon.
  7. #
  8. # This file, along with aclocal, configure.ac autoconf,
  9. # and automake can produce a highly functional configuration
  10. # script and Makefile.
  11. #
  12. # Bob Techentin
  13. # January 22, 2004
  14. # Copyright 2004 Mayo Foundation. All Rights Reserved
  15. #
  16. # $Id: Makefile.am,v 1.4 2004/04/23 16:22:17 techenti Exp $
  17. #
  18. #----------------------------------------------------------------
  19. #----------------------------------------------------------------
  20. # Just for the record, this isn't a GNU project, and
  21. # doesn't have all the support files like LICENSE and
  22. # ChangeLog. We're also compiling in a subdirectory, so
  23. # we supply a couple of options to automake.
  24. #
  25. # Note that this package _does_ require some of the support
  26. # files like install-sh, so if you're running aclocal,
  27. # autoconf, and automake for the first time, you'll need to
  28. # supply command line switches --add-missing --copy.
  29. #----------------------------------------------------------------
  30. AUTOMAKE_OPTIONS = foreign
  31. #---------------------------------------------------------------
  32. # tcl/tk scripts that may need to be installed.
  33. #---------------------------------------------------------------
  34. pkglib_SCRIPTS = \
  35. console.tcl \
  36. console_demo.tcl \
  37. tkcon.tcl \
  38. pkgIndex.tcl
  39. pkglib_DATA = \
  40. README
  41. #---------------------------------------------------------------
  42. # Define an installation directory that includes
  43. # the version number (from AC_INIT) like "console1.0"
  44. #---------------------------------------------------------------
  45. pkglibdir = $(libdir)/$(PACKAGE)$(PACKAGE_VERSION)