summaryrefslogtreecommitdiff
path: root/apps/plugins/logo.c
diff options
context:
space:
mode:
authorBjörn Stenberg <bjorn@haxx.se>2008-11-03 14:37:50 +0000
committerBjörn Stenberg <bjorn@haxx.se>2008-11-03 14:37:50 +0000
commitac488f8cb77d7786fe22e642f6177f46e5e6b1db (patch)
tree9e8ff3c76608bd0d1f788ea01679b82921d0e09d /apps/plugins/logo.c
parentd34837cba14de3792bd84753370cb8bd92beedbf (diff)
downloadrockbox-ac488f8cb77d7786fe22e642f6177f46e5e6b1db.tar.gz
rockbox-ac488f8cb77d7786fe22e642f6177f46e5e6b1db.zip
Makefile overhaul. All generated bitmaps are now explicitly in OBJDIR/bitmaps and OBJDIR/pluginbitmaps, and plugins properly depend on their respective bitmap files. Fixes #6847.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18987 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/logo.c')
-rw-r--r--apps/plugins/logo.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/logo.c b/apps/plugins/logo.c
index 4d4263ee79..be4a39c2b5 100644
--- a/apps/plugins/logo.c
+++ b/apps/plugins/logo.c
@@ -31,7 +31,7 @@ PLUGIN_HEADER
31#ifdef HAVE_REMOTE_LCD 31#ifdef HAVE_REMOTE_LCD
32#define REMOTE_WIDTH LCD_REMOTE_WIDTH 32#define REMOTE_WIDTH LCD_REMOTE_WIDTH
33#define REMOTE_HEIGHT LCD_REMOTE_HEIGHT 33#define REMOTE_HEIGHT LCD_REMOTE_HEIGHT
34#include "remote_rockboxlogo.h" 34#include "pluginbitmaps/remote_rockboxlogo.h"
35#define REMOTE_LOGO_WIDTH BMPWIDTH_remote_rockboxlogo 35#define REMOTE_LOGO_WIDTH BMPWIDTH_remote_rockboxlogo
36#define REMOTE_LOGO_HEIGHT BMPHEIGHT_remote_rockboxlogo 36#define REMOTE_LOGO_HEIGHT BMPHEIGHT_remote_rockboxlogo
37#define REMOTE_LOGO remote_rockboxlogo 37#define REMOTE_LOGO remote_rockboxlogo
@@ -39,7 +39,7 @@ extern const fb_remote_data remote_rockboxlogo[];
39#endif /* HAVE_REMOTE_LCD */ 39#endif /* HAVE_REMOTE_LCD */
40 40
41#define LOGO rockboxlogo 41#define LOGO rockboxlogo
42#include "rockboxlogo.h" 42#include "pluginbitmaps/rockboxlogo.h"
43#define LOGO_WIDTH BMPWIDTH_rockboxlogo 43#define LOGO_WIDTH BMPWIDTH_rockboxlogo
44#define LOGO_HEIGHT BMPHEIGHT_rockboxlogo 44#define LOGO_HEIGHT BMPHEIGHT_rockboxlogo
45extern const fb_data rockboxlogo[]; 45extern const fb_data rockboxlogo[];