aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authors-ol <s-ol@users.noreply.github.com>2020-06-03 11:08:00 +0000
committers-ol <s-ol@users.noreply.github.com>2020-06-03 11:08:32 +0000
commit4d7e10c67859dd60d86fcbcf44863770c82cef6e (patch)
tree270d9517ddff842f3fd1787d31d0e9207913cf3f
parentlib midi, random: docstring formatting fixes (diff)
downloadalive-4d7e10c67859dd60d86fcbcf44863770c82cef6e.tar.gz
alive-4d7e10c67859dd60d86fcbcf44863770c82cef6e.zip
explicit sort in Makefile
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index cf35d77..0473f69 100644
--- a/Makefile
+++ b/Makefile
@@ -1,9 +1,9 @@
-MODULES:=$(wildcard alv-lib/*.moon) alv-lib/midi/launchctl.moon
+MODULES:=$(sort $(wildcard alv-lib/*.moon)) alv-lib/midi/launchctl.moon
MODULES:=$(MODULES:alv-lib/%.moon=docs/reference/module/%.html)
-REFERENCE=docs/reference/index.md $(wildcard docs/reference/[01]*.md) docs/reference/builtins.html $(MODULES)
+REFERENCE=docs/reference/index.md $(sort $(wildcard docs/reference/[01]*.md)) docs/reference/builtins.html $(MODULES)
REFTOC=$(REFERENCE:%.md=%.html)
-GUIDE=docs/guide/index.md $(wildcard docs/guide/[01]*.md)
+GUIDE=docs/guide/index.md $(sort $(wildcard docs/guide/[01]*.md))
GUIDETOC=$(GUIDE:%.md=%.html)
CORE=$(wildcard alv/*.moon alv/**/*.moon) $(wildcard alv/*.md)