diff options
author | David Thompson <dthompson2@worcester.edu> | 2021-10-01 08:16:01 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2021-10-01 08:17:24 -0400 |
commit | 602569cd13f8f018194f54f39f4645d36d5b3821 (patch) | |
tree | 93ed88065f71517fd0268c599969189a9117e75e /Makefile.am | |
parent | 63df1926ee9bde67982f1296cf41d3afc0a148eb (diff) |
Move data structure modules into new (chickadee data ...) namespace.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile.am b/Makefile.am index 3f7b7d0..9a108d5 100644 --- a/Makefile.am +++ b/Makefile.am @@ -44,21 +44,21 @@ SOURCES = \ chickadee/game-loop.scm \ chickadee/json.scm \ chickadee/base64.scm \ - chickadee/heap.scm \ - chickadee/array-list.scm \ - chickadee/queue.scm \ chickadee/freetype.scm \ chickadee/readline.scm \ chickadee/async-repl.scm \ + chickadee/data/heap.scm \ + chickadee/data/array-list.scm \ + chickadee/data/queue.scm \ + chickadee/data/grid.scm \ + chickadee/data/path-finding.scm \ chickadee/math.scm \ chickadee/math/vector.scm \ chickadee/math/bezier.scm \ chickadee/math/matrix.scm \ chickadee/math/quaternion.scm \ chickadee/math/rect.scm \ - chickadee/math/grid.scm \ chickadee/math/easings.scm \ - chickadee/math/path-finding.scm \ chickadee/audio/mpg123.scm \ chickadee/audio/openal.scm \ chickadee/audio/vorbis.scm \ |