Makefile.am 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. #----------------------------------------------------------------
  2. #
  3. # Makefile.am
  4. #
  5. # Automake source file for TNT
  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-2004 Mayo Foundation. All Rights Reserved
  14. # $Id: Makefile.am,v 1.15 2004/07/22 14:23:32 techenti Exp $
  15. #
  16. #----------------------------------------------------------------
  17. #----------------------------------------------------------------
  18. # Note that this package _does_ require some of the support
  19. # files like install-sh, so if you're running aclocal,
  20. # autoconf, and automake for the first time, you'll need to
  21. # supply command line switches --add-missing --copy.
  22. #
  23. # Or see (or run) the 'bootstrap' script for details.
  24. #----------------------------------------------------------------
  25. #---------------------------------------------------------------
  26. # tcl/tk scripts that need to be installed.
  27. #---------------------------------------------------------------
  28. bin_SCRIPTS = tnt.tcl tnt-mmtl
  29. #---------------------------------------------------------------
  30. # Examples to be installed
  31. #---------------------------------------------------------------
  32. examplesdir = $(pkgdatadir)/examples
  33. examples_DATA = \
  34. examples/9-7-00.xsctn \
  35. examples/coplanar.xsctn \
  36. examples/example-microstrip-2.xsctn \
  37. examples/example-microstrip-5.xsctn \
  38. examples/example-stripline-2.xsctn \
  39. examples/generic.xsctn \
  40. examples/test1.xsctn \
  41. examples/trap_test.xsctn \
  42. examples/w10t2.5.xsctn \
  43. examples/w20t5.xsctn
  44. #---------------------------------------------------------------
  45. # Application documents get installed into the $(prefix)
  46. # directory, which will be nice if the installer specifies
  47. # a prefix. If not, then I suppose README will go into
  48. # /usr.
  49. #---------------------------------------------------------------
  50. appdocsdir = $(pkgdatadir)
  51. appdocs_DATA = \
  52. AUTHORS$(TXTEXT) \
  53. COPYING$(TXTEXT) \
  54. ChangeLog$(TXTEXT) \
  55. NEWS$(TXTEXT) \
  56. README$(TXTEXT) \
  57. THANKS$(TXTEXT)
  58. #---------------------------------------------------------------
  59. # Convert application documents to text files on Windows.
  60. #---------------------------------------------------------------
  61. if WINDOWS
  62. TXTEXT=.txt
  63. %$(TXTEXT) : %
  64. cp $< $@
  65. unix2dos $@
  66. endif
  67. #---------------------------------------------------------------
  68. # Windows installation need a helper application to
  69. # send postscript files through the print queue.
  70. # Copy PrFile32.exe and it's zip distribution to ./bin.
  71. #---------------------------------------------------------------
  72. if WINDOWS
  73. printfiledir = $(bindir)
  74. printfile_DATA = printfile215-32.zip PrFile32.exe
  75. endif
  76. #---------------------------------------------------------------
  77. # Subdirectories for automake and make
  78. #---------------------------------------------------------------
  79. #SUBDIRS = bem calcCAP calcRL doc csdl gui units sppdgTcllib
  80. SUBDIRS = bem doc csdl gui units sppdgTcllib
  81. EXTRA_DIST = $(bin_SCRIPTS) $(printfile_DATA) $(examples_DATA)