aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBruce Hill <bitbucket@bruce-hill.com>2018-09-14 14:42:12 -0700
committerBruce Hill <bitbucket@bruce-hill.com>2018-09-14 14:42:20 -0700
commit13ce4e7ee9607aa7c3578af14d0f1f5d51b50287 (patch)
tree31430cf094b0c26ae2961250f1bcf245d131299c /Makefile
parent31f593fb097fcf31a07fb6e1a5d501904cabcb28 (diff)
Renaming parser2 to parser.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 10e788b..867a726 100644
--- a/Makefile
+++ b/Makefile
@@ -11,11 +11,11 @@ UNINSTALL_VERSION=
# ========= You shouldn't need to mess with any of these variables below ================
MOON_FILES= code_obj.moon error_handling.moon files.moon nomsu.moon nomsu_compiler.moon \
- syntax_tree.moon containers.moon bitops.moon \
- parser2.moon pretty_errors.moon string2.moon
+ syntax_tree.moon containers.moon bitops.moon parser.moon pretty_errors.moon \
+ string2.moon
LUA_FILES= code_obj.lua consolecolors.lua error_handling.lua files.lua nomsu.lua nomsu_compiler.lua \
- syntax_tree.lua containers.lua bitops.lua utils.lua \
- parser2.lua pretty_errors.lua string2.lua
+ syntax_tree.lua containers.lua bitops.lua utils.lua parser.lua pretty_errors.lua \
+ string2.lua
CORE_NOM_FILES= $(wildcard core/*.nom)
CORE_LUA_FILES= $(patsubst %.nom,%.lua,$(CORE_NOM_FILES))
LIB_NOM_FILES= $(wildcard lib/*.nom)