diff options
author | yokota <yokota@FreeBSD.org> | 1999-01-11 03:34:56 +0000 |
---|---|---|
committer | yokota <yokota@FreeBSD.org> | 1999-01-11 03:34:56 +0000 |
commit | c3b11c5cedc1eb68724419873e0be129099e4e17 (patch) | |
tree | 6ac9238d0df70daab05cd4e57b542acf206baf41 /sys/modules/splash/bmp/Makefile | |
parent | 5253fae34d9676e3ca3dd501b0b1d5fe2328d31e (diff) | |
download | FreeBSD-src-c3b11c5cedc1eb68724419873e0be129099e4e17.zip FreeBSD-src-c3b11c5cedc1eb68724419873e0be129099e4e17.tar.gz |
Add splash screen module. This version has rather limited
capabilities, but should be a good start... Well, sort of.
It can handle W*ndows 256 color BMP file. (Other color depth probably
won't work.) The size of the image must be 320x200 or less. *sigh*
Diffstat (limited to 'sys/modules/splash/bmp/Makefile')
-rw-r--r-- | sys/modules/splash/bmp/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sys/modules/splash/bmp/Makefile b/sys/modules/splash/bmp/Makefile new file mode 100644 index 0000000..798e7e4 --- /dev/null +++ b/sys/modules/splash/bmp/Makefile @@ -0,0 +1,8 @@ +# $Id: $ + +KMOD= splash_bmp +SRCS= splash_bmp.c + +NOMAN= + +.include <bsd.kmod.mk> |