Makefile.am 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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 subdir-objects
  28. #---------------------------------------------------------------
  29. # tcl/tk scripts that may need to be installed.
  30. #---------------------------------------------------------------
  31. pkglib_SCRIPTS = \
  32. lib/calcCAP_exe.tcl \
  33. lib/calcCAP.tcl \
  34. lib/epl.bit \
  35. lib/pkgIndex.tcl
  36. #----------------------------------------------------------------
  37. # nmmtl is our main target
  38. #----------------------------------------------------------------
  39. bin_PROGRAMS = calcCAP
  40. #----------------------------------------------------------------
  41. # Each program depends on (mostly the same) source files
  42. #----------------------------------------------------------------
  43. calcCAP_SOURCES = $(cpp_SOURCES) src/calcCAP.cpp
  44. #----------------------------------------------------------------
  45. # Most of nmmtl is written in C++
  46. #----------------------------------------------------------------
  47. cpp_SOURCES = \
  48. src/adfunc.cpp \
  49. src/bicgstab.cpp \
  50. src/cmplxmat.cpp \
  51. src/cmplxvec.cpp \
  52. src/coif4.cpp \
  53. src/coif6.cpp \
  54. src/complex.cpp \
  55. src/data.cpp \
  56. src/daub2.cpp \
  57. src/diffrm.cpp \
  58. src/gauleg.cpp \
  59. src/ivectorl.cpp \
  60. src/matrix.cpp \
  61. src/matrix3d.cpp \
  62. src/myfunc.cpp \
  63. src/prony.cpp \
  64. src/sparse.cpp \
  65. src/stdafx.cpp \
  66. src/systsolv.cpp \
  67. src/vector.cpp