aboutsummaryrefslogtreecommitdiff
path: root/stand/lua/Makefile
diff options
context:
space:
mode:
authorKyle Evans <kevans@FreeBSD.org>2018-02-22 01:21:39 +0000
committerKyle Evans <kevans@FreeBSD.org>2018-02-22 01:21:39 +0000
commite37f4622dff6e8dd40d40251a4df8071e199c5bb (patch)
treecc2d0b94e0c267e3dc1d8559dc1d1cce09f79c7f /stand/lua/Makefile
parenta33ba3dbde2ffcf209d5e8fc60ce847be69709be (diff)
downloadsrc-e37f4622dff6e8dd40d40251a4df8071e199c5bb.tar.gz
src-e37f4622dff6e8dd40d40251a4df8071e199c5bb.zip
lualoader: Split cli bits out into a cli module
This module will, in the not-so-distant future, grow functionality for reducing boilerplate in functions that implement cli commands. It will likely also house most in-tree cli commands.
Notes
Notes: svn path=/head/; revision=329779
Diffstat (limited to 'stand/lua/Makefile')
-rw-r--r--stand/lua/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/stand/lua/Makefile b/stand/lua/Makefile
index 63410f870ee1..3c5971205ed4 100644
--- a/stand/lua/Makefile
+++ b/stand/lua/Makefile
@@ -3,7 +3,8 @@
.include <bsd.init.mk>
BINDIR= /boot/lua
-FILES= color.lua \
+FILES= cli.lua \
+ color.lua \
config.lua \
core.lua \
drawer.lua \