Makefile.am 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. SOURCES = \
  2. fibers.scm \
  3. fibers/channels.scm \
  4. fibers/conditions.scm \
  5. fibers/operations.scm \
  6. fibers/promises.scm \
  7. fibers/scheduler.scm \
  8. fibers/streams.scm \
  9. fibers/timers.scm \
  10. fibers/waiter-queue.scm \
  11. guile.scm \
  12. hoot/apply.scm \
  13. hoot/assoc.scm \
  14. hoot/atomics.scm \
  15. hoot/bitvectors.scm \
  16. hoot/bitwise.scm \
  17. hoot/boxes.scm \
  18. hoot/bytevectors.scm \
  19. hoot/char.scm \
  20. hoot/cond-expand.scm \
  21. hoot/control.scm \
  22. hoot/core-syntax.scm \
  23. hoot/core-syntax-helpers.scm \
  24. hoot/cross-compilation.scm \
  25. hoot/debug.scm \
  26. hoot/dynamic-states.scm \
  27. hoot/dynamic-wind.scm \
  28. hoot/eq.scm \
  29. hoot/equal.scm \
  30. hoot/error-handling.scm \
  31. hoot/errors.scm \
  32. hoot/eval.scm \
  33. hoot/exceptions.scm \
  34. hoot/ffi.scm \
  35. hoot/finalization.scm \
  36. hoot/fluids.scm \
  37. hoot/gensym.scm \
  38. hoot/hashtables.scm \
  39. hoot/inline-wasm.scm \
  40. hoot/interaction-environment.scm \
  41. hoot/keywords.scm \
  42. hoot/lists.scm \
  43. hoot/match.scm \
  44. hoot/modules.scm \
  45. hoot/not.scm \
  46. hoot/numbers.scm \
  47. hoot/pairs.scm \
  48. hoot/parameters.scm \
  49. hoot/ports.scm \
  50. hoot/procedures.scm \
  51. hoot/read.scm \
  52. hoot/records.scm \
  53. hoot/regexps.scm \
  54. hoot/strings.scm \
  55. hoot/symbols.scm \
  56. hoot/syntax.scm \
  57. hoot/syntax-objects.scm \
  58. hoot/syntax-transformers.scm \
  59. hoot/tree-il.scm \
  60. hoot/values.scm \
  61. hoot/vectors.scm \
  62. hoot/weak-refs.scm \
  63. hoot/weak-vectors.scm \
  64. hoot/write.scm \
  65. ice-9/atomic.scm \
  66. ice-9/binary-ports.scm \
  67. ice-9/control.scm \
  68. ice-9/custom-ports.scm \
  69. ice-9/exceptions.scm \
  70. ice-9/i18n.scm \
  71. ice-9/match.scm \
  72. ice-9/optargs.scm \
  73. ice-9/ports/internal.scm \
  74. ice-9/rdelim.scm \
  75. ice-9/regex.scm \
  76. ice-9/weak-vector.scm \
  77. rnrs/bytevectors.scm \
  78. rnrs/bytevectors/gnu.scm \
  79. scheme/base.scm \
  80. scheme/case-lambda.scm \
  81. scheme/char.scm \
  82. scheme/complex.scm \
  83. scheme/cxr.scm \
  84. scheme/eval.scm \
  85. scheme/file.scm \
  86. scheme/inexact.scm \
  87. scheme/lazy.scm \
  88. scheme/load.scm \
  89. scheme/process-context.scm \
  90. scheme/r5rs.scm \
  91. scheme/read.scm \
  92. scheme/repl.scm \
  93. scheme/time.scm \
  94. scheme/write.scm \
  95. srfi/srfi-1.scm \
  96. srfi/srfi-9.scm \
  97. srfi/srfi-9/gnu.scm \
  98. srfi/srfi-11.scm \
  99. srfi/srfi-14.scm
  100. GENERATED_SOURCES = \
  101. hoot/char-prelude.scm
  102. hoot/char-prelude.scm: $(top_srcdir)/bin/generate-char-prelude.scm
  103. $(AM_V_GEN)$(MKDIR_P) $(dir $@) && \
  104. $(top_builddir)/pre-inst-env $(GUILE) $< > "$@"
  105. CLEANFILES = $(GENERATED_SOURCES)
  106. EXTRA_DIST = $(SOURCES)
  107. moddir=$(pkgdatadir)/$(PACKAGE_VERSION)/lib
  108. nobase_mod_DATA = $(SOURCES) $(GENERATED_SOURCES)