guile-knots/Makefile.am

34 lines
688 B
Text
Raw Normal View History

2024-11-19 18:43:43 +00:00
include guile.am
SOURCES = \
knots.scm \
knots/non-blocking.scm \
knots/parallelism.scm \
knots/promise.scm \
knots/queue.scm \
knots/resource-pool.scm \
knots/timeout.scm \
knots/web-server.scm \
knots/thread-pool.scm
2024-11-19 18:43:43 +00:00
2024-12-29 10:45:41 +00:00
SCM_TESTS = \
tests/non-blocking.scm \
tests/promise.scm \
tests/timeout.scm \
tests/non-blocking.scm \
tests/queue.scm \
tests/web-server.scm \
tests/parallelism.scm \
tests/resource-pool.scm \
tests/thread-pool.scm
2024-12-29 10:45:41 +00:00
TESTS_GOBJECTS = $(SCM_TESTS:%.scm=%.go)
2024-11-19 18:43:43 +00:00
EXTRA_DIST = \
README \
bootstrap \
pre-inst-env.in
2024-12-29 10:45:41 +00:00
check: $(GOBJECTS) $(TESTS_GOBJECTS)
find tests -name "*.scm" | xargs -t -L1 ./test-env guile