diff options
author | David Thompson <dthompson2@worcester.edu> | 2017-04-01 12:01:36 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2017-04-01 12:02:05 -0400 |
commit | 8ac631655dd14a375396682bbd6fb10a7415850e (patch) | |
tree | 1200bba64935549ae38e3e242977e4bab75d92cd /Makefile.am | |
parent | 6d78be95569519bcad7d381e4135f76bf5bd31ec (diff) |
Add binary heap implementation.
* chickadee/heap.scm: New file.
* Makefile.am (SOURCES): Add it.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 0103c2b..536217b 100644 --- a/Makefile.am +++ b/Makefile.am @@ -41,6 +41,7 @@ godir=$(libdir)/guile/$(GUILE_EFFECTIVE_VERSION)/ccache SOURCES = \ chickadee/config.scm \ chickadee/utils.scm \ + chickadee/heap.scm \ chickadee/audio.scm \ chickadee/input/controller.scm \ chickadee/input/keyboard.scm \ |