freebsd-dev/stand/lua/Makefile
Kyle Evans ee74c23624 stand: consolidate knowledge of lua path
Multiple places coordinate to 'know' where lua scripts are installed. Knock
this down to being formally defined (and overridable) in exactly one spot,
defs.mk, and spread the knowledge to loaders and liblua alike. A future
commit will expose this to lua as loader.lua_path, so it can build absolute
paths to lua scripts as needed.

MFC after:	1 week
2019-11-02 03:37:58 +00:00

33 lines
452 B
Makefile

# $FreeBSD$
.include <bsd.init.mk>
MAN= cli.lua.8 \
color.lua.8 \
config.lua.8 \
core.lua.8 \
drawer.lua.8 \
hook.lua.8 \
menu.lua.8 \
password.lua.8 \
screen.lua.8
FILESDIR= ${LUAPATH}
FILES= cli.lua \
color.lua \
config.lua \
core.lua \
drawer.lua \
hook.lua \
loader.lua \
logo-beastie.lua \
logo-beastiebw.lua \
logo-fbsdbw.lua \
logo-orb.lua \
logo-orbbw.lua \
menu.lua \
password.lua \
screen.lua
.include <bsd.prog.mk>