From 4f24ca85289f8dc939b6c809c3aa49acc1ac001e Mon Sep 17 00:00:00 2001 From: David Thompson Date: Mon, 15 Feb 2016 15:02:17 -0500 Subject: 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. --- Makefile.am | 8 ++++---- 1 file 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 -- cgit v1.2.3