diff options
author | Thijs <thijs@thijsschreijer.nl> | 2023-11-16 09:09:54 +0100 |
---|---|---|
committer | Thijs Schreijer <thijs@thijsschreijer.nl> | 2024-04-30 09:28:01 +0200 |
commit | bd994461ef7c2553da9a6945c685152bad50eb8f (patch) | |
tree | 28adc32712f00a200a34357e731a570bf1a359dc /Makefile | |
parent | 47c24eed0191f8f72646be63dee94ac2b35eb062 (diff) | |
download | luasystem-bd994461ef7c2553da9a6945c685152bad50eb8f.tar.gz luasystem-bd994461ef7c2553da9a6945c685152bad50eb8f.tar.bz2 luasystem-bd994461ef7c2553da9a6945c685152bad50eb8f.zip |
feat(term): getting/setting terminal config flags
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -45,3 +45,13 @@ install-all: | |||
45 | @cd src && $(MAKE) install LUA_VERSION=5.3 | 45 | @cd src && $(MAKE) install LUA_VERSION=5.3 |
46 | 46 | ||
47 | .PHONY: test | 47 | .PHONY: test |
48 | test: | ||
49 | busted | ||
50 | |||
51 | .PHONY: lint | ||
52 | lint: | ||
53 | luacheck . | ||
54 | |||
55 | .PHONY: docs | ||
56 | docs: | ||
57 | ldoc . | ||