Compare commits

..

2 commits

Author SHA1 Message Date
338d08081e Add missing Makefile entries for the sort module
Some checks failed
/ test (push) Has been cancelled
2026-01-05 10:51:24 +00:00
b4342503d5 Sort Makefile lines 2026-01-05 10:50:32 +00:00

View file

@ -7,20 +7,22 @@ SOURCES = \
knots/promise.scm \
knots/queue.scm \
knots/resource-pool.scm \
knots/sort.scm \
knots/thread-pool.scm \
knots/timeout.scm \
knots/web-server.scm \
knots/thread-pool.scm
knots/web-server.scm
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/promise.scm \
tests/queue.scm \
tests/resource-pool.scm \
tests/thread-pool.scm
tests/sort.scm \
tests/thread-pool.scm \
tests/timeout.scm \
tests/web-server.scm
TESTS_GOBJECTS = $(SCM_TESTS:%.scm=%.go)