1091c8fe47
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.
23 lines
312 B
Makefile
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>
|