diff options
author | David Thompson <dthompson2@worcester.edu> | 2016-02-15 15:02:17 -0500 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2016-02-15 15:02:17 -0500 |
commit | 4f24ca85289f8dc939b6c809c3aa49acc1ac001e (patch) | |
tree | 1741ea65b7d7c15ff5c5633bff7c51ef70653039 | |
parent | 993f228024cee0f7625a2e67b0e01f9e7e2c5556 (diff) |
build: Change the order in which some modules are compiled.
This prevents some duplicated compilation when modules include other Sly
modules that haven't been compiled yet.
-rw-r--r-- | Makefile.am | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile.am b/Makefile.am index fe5348a..cfa1e4e 100644 --- a/Makefile.am +++ b/Makefile.am @@ -27,12 +27,9 @@ SOURCES = \ sly/config.scm \ sly/coroutine.scm \ sly/event.scm \ - sly/fps.scm \ - sly/game.scm \ sly/guardian.scm \ sly/input/keyboard.scm \ sly/input/mouse.scm \ - sly/live-reload.scm \ sly/math.scm \ sly/math/quaternion.scm \ sly/math/rect.scm \ @@ -40,7 +37,6 @@ SOURCES = \ sly/math/tween.scm \ sly/math/vector.scm \ sly/records.scm \ - sly/repl.scm \ sly/signal.scm \ sly/window.scm \ sly/render/utils.scm \ @@ -58,6 +54,10 @@ SOURCES = \ sly/render/tile-map.scm \ sly/render/viewport.scm \ sly/render.scm \ + sly/game.scm \ + sly/fps.scm \ + sly/live-reload.scm \ + sly/repl.scm \ $(WRAPPER_SOURCES) \ sly.scm |