From 66cc505f94de2724f4d73a6c6faf86ae08a9b7c6 Mon Sep 17 00:00:00 2001 From: leaf corcoran Date: Fri, 4 Nov 2022 13:12:10 -0700 Subject: [PATCH] minor makefile/spec tweaks --- Makefile | 4 ++++ spec/README.md | 10 ---------- 2 files changed, 4 insertions(+), 10 deletions(-) diff --git a/Makefile b/Makefile index 0582488..4df5d77 100644 --- a/Makefile +++ b/Makefile @@ -22,6 +22,10 @@ show: test: build busted + +build_test_outputs: build + BUILD=1 busted spec/lang_spec.moon + local: build LUA_PATH='$(LUA_PATH_MAKE)' LUA_CPATH='$(LUA_CPATH_MAKE)' $(LUAROCKS) make --local moonscript-dev-1.rockspec diff --git a/spec/README.md b/spec/README.md index 3769948..bdffb54 100644 --- a/spec/README.md +++ b/spec/README.md @@ -44,13 +44,3 @@ describe "moonscript.base", -> `with_dev`'s require function will load the `.lua` files in the local directory, not the `moon` ones. You're responsible for compiling them first before running the tests. - -You might do - -```bash -$ make compile_system; busted -``` - -> `make compile_system` is a makefile task included in the repo that will build -> MoonScript in the current directory with the version installed to the system -