freebsd-dev/stand/lua/Makefile
Kyle Evans 1091c8fe47 lualoader: Split logodefs out into logo-* files
This commit splits all of the logodefs/graphics out into their own own files
and provides a method for these files to register their logodefs with the
drawer. Graphics are now loaded on demand if they don't exist in the current
set of logodefs.

The drawer module becomes a little easier to navigate through without all of
the graphics mixed in. It's also easy to do one-off graphics like the
9.2 Die Hard tribute by dteske@ without adding even more to our memory
requirements.
2018-04-01 01:07:15 +00:00

23 lines
312 B
Makefile

# $FreeBSD$
.include <bsd.init.mk>
FILESDIR= /boot/lua
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>