We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75aa95d commit 791e015Copy full SHA for 791e015
Makefile
@@ -12,6 +12,14 @@ build:
12
$(LUA) bin/moonc -p bin/moon.moon >> bin/moon
13
echo "-- vim: set filetype=lua:" >> bin/moon
14
15
+
16
+# This will rebuild MoonScript from the (hopefully working) system installation of moonc
17
+build_from_system:
18
+ moonc moon/ moonscript/
19
+ echo "#!/usr/bin/env lua" > bin/moon
20
+ moonc -p bin/moon.moon >> bin/moon
21
+ echo "-- vim: set filetype=lua:" >> bin/moon
22
23
show:
24
# LUA $(LUA)
25
# LUA_VERSION $(LUA_VERSION)
@@ -22,7 +30,6 @@ show:
30
test: build
31
busted
32
-
26
33
build_test_outputs: build
27
34
BUILD=1 busted spec/lang_spec.moon
28
35
0 commit comments