Makefile.am 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. #----------------------------------------------------------------
  2. #
  3. # Makefile.am
  4. #
  5. # Automake source file for Boundary Element MMTL (bem).
  6. # This file, along with aclocal, configure.ac autoconf,
  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 (C) Mayo Foundation. All Rights Reserved
  14. #
  15. #----------------------------------------------------------------
  16. #----------------------------------------------------------------
  17. # Just for the record, this isn't a GNU project, and
  18. # doesn't have all the support files like LICENSE and
  19. # ChangeLog. We're also compiling in a subdirectory, so
  20. # we supply a couple of options to automake.
  21. #
  22. # Note that this package _does_ require some of the support
  23. # files like install-sh, so if you're running aclocal,
  24. # autoconf, and automake for the first time, you'll need to
  25. # supply command line switches --add-missing --copy.
  26. #----------------------------------------------------------------
  27. AUTOMAKE_OPTIONS = foreign
  28. #---------------------------------------------------------------
  29. # tcl/tk scripts to be installed.
  30. #---------------------------------------------------------------
  31. pkglib_SCRIPTS = \
  32. canvas_functions.tcl \
  33. gui.tcl \
  34. gui_build.tcl \
  35. gui_canvas.itcl \
  36. gui_elements.tcl \
  37. gui_help.tcl \
  38. gui_initialize.tcl \
  39. gui_xmission.tcl \
  40. pkgIndex.tcl \
  41. splash.tcl \
  42. style.tcl
  43. #---------------------------------------------------------------
  44. # Data files to be installed
  45. #---------------------------------------------------------------
  46. pkglib_DATA = \
  47. MayoSPPDGlogo.gif \
  48. conductivity.list \
  49. loss_tangent.list \
  50. loss_tangent2.list \
  51. permittivity.list \
  52. permittivity2.list
  53. #---------------------------------------------------------------
  54. # Define an installation directory that includes
  55. # the version number (from AC_INIT) like "bltmath1.0"
  56. #---------------------------------------------------------------
  57. pkglibdir = $(libdir)/$(PACKAGE)$(PACKAGE_VERSION)