summaryrefslogtreecommitdiff
path: root/apps/bitmaps/native/SOURCES
diff options
context:
space:
mode:
authorDave Chapman <dave@dchapman.com>2006-01-22 21:30:32 +0000
committerDave Chapman <dave@dchapman.com>2006-01-22 21:30:32 +0000
commit1e7043a20bfe874c2183989054a9a7daf788e582 (patch)
treef0ae5015c0cf609e4137757dc243cdc386dd34e2 /apps/bitmaps/native/SOURCES
parent4503b96749839acc3403d6cd7d4f1dff591cf221 (diff)
downloadrockbox-1e7043a20bfe874c2183989054a9a7daf788e582.tar.gz
rockbox-1e7043a20bfe874c2183989054a9a7daf788e582.zip
Initial attempt at using bmp2rb in the build system. Don't forget to re-run configure
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8418 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/bitmaps/native/SOURCES')
-rw-r--r--apps/bitmaps/native/SOURCES14
1 files changed, 14 insertions, 0 deletions
diff --git a/apps/bitmaps/native/SOURCES b/apps/bitmaps/native/SOURCES
new file mode 100644
index 0000000000..f15624bb34
--- /dev/null
+++ b/apps/bitmaps/native/SOURCES
@@ -0,0 +1,14 @@
1#ifdef HAVE_LCD_BITMAP
2
3/* Rockbox logo */
4#if (LCD_DEPTH == 1)
5rockboxlogo.112x37x1.bmp
6#elif (LCD_WIDTH == 160) && (LCD_DEPTH == 2)
7rockboxlogo.160x53x2.bmp
8#elif (LCD_WIDTH == 176) && (LCD_DEPTH == 16)
9rockboxlogo.176x54x16.bmp
10#elif (LCD_WIDTH >= 220) && (LCD_DEPTH == 16)
11rockboxlogo.220x68x16.bmp
12#endif
13
14#endif /* HAVE_LCD_BITMAP */