forked from len0rd/rockbox
Added missing dependencies for codeclib and pluginlib. This required renaming some files that have twins in other places.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19756 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
bbd33a0a7d
commit
52320b83c0
14 changed files with 12 additions and 11 deletions
|
@ -16,6 +16,7 @@ CODECS := $(subst $(ROOTDIR),$(BUILDDIR),$(CODECS))
|
||||||
|
|
||||||
# the codec helper library
|
# the codec helper library
|
||||||
include $(APPSDIR)/codecs/lib/libcodec.make
|
include $(APPSDIR)/codecs/lib/libcodec.make
|
||||||
|
OTHER_INC += -I$(APPSDIR)/codecs/lib
|
||||||
|
|
||||||
# the codec libraries
|
# the codec libraries
|
||||||
include $(APPSDIR)/codecs/demac/libdemac.make
|
include $(APPSDIR)/codecs/demac/libdemac.make
|
||||||
|
|
|
@ -31,7 +31,7 @@
|
||||||
#include <codecs.h>
|
#include <codecs.h>
|
||||||
#include "asm_arm.h"
|
#include "asm_arm.h"
|
||||||
#include "asm_mcf5249.h"
|
#include "asm_mcf5249.h"
|
||||||
#include "misc.h"
|
#include "codeclib_misc.h"
|
||||||
|
|
||||||
#ifndef ICONST_ATTR_TREMOR_WINDOW
|
#ifndef ICONST_ATTR_TREMOR_WINDOW
|
||||||
#define ICONST_ATTR_TREMOR_WINDOW ICONST_ATTR
|
#define ICONST_ATTR_TREMOR_WINDOW ICONST_ATTR
|
||||||
|
|
|
@ -9,7 +9,7 @@ rgb_hsv.c
|
||||||
pluginlib for use with greylib overlay output
|
pluginlib for use with greylib overlay output
|
||||||
*/
|
*/
|
||||||
#if LCD_DEPTH == 1
|
#if LCD_DEPTH == 1
|
||||||
resize.c
|
pluginlib_resize.c
|
||||||
#endif
|
#endif
|
||||||
grey_core.c
|
grey_core.c
|
||||||
grey_draw.c
|
grey_draw.c
|
||||||
|
@ -37,7 +37,7 @@ picture.c
|
||||||
xlcd_core.c
|
xlcd_core.c
|
||||||
xlcd_draw.c
|
xlcd_draw.c
|
||||||
xlcd_scroll.c
|
xlcd_scroll.c
|
||||||
bmp.c
|
pluginlib_bmp.c
|
||||||
#ifdef HAVE_LCD_COLOR
|
#ifdef HAVE_LCD_COLOR
|
||||||
bmp_smooth_scale.c
|
bmp_smooth_scale.c
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -70,7 +70,7 @@
|
||||||
* (C) Daniel M. Duley.
|
* (C) Daniel M. Duley.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "bmp.h"
|
#include "pluginlib_bmp.h"
|
||||||
#include "lcd.h"
|
#include "lcd.h"
|
||||||
|
|
||||||
void smooth_resize_bitmap(struct bitmap *src_bmp, struct bitmap *dest_bmp)
|
void smooth_resize_bitmap(struct bitmap *src_bmp, struct bitmap *dest_bmp)
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
*
|
*
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
#include "bmp.h"
|
#include "pluginlib_bmp.h"
|
||||||
|
|
||||||
#include "lcd.h"
|
#include "lcd.h"
|
||||||
#include "file.h"
|
#include "file.h"
|
|
@ -32,7 +32,7 @@ $(foreach dir,$(PLUGINSUBDIRS),$(eval include $(dir)/$(notdir $(dir)).make))
|
||||||
PLUGIN_LDS := $(APPSDIR)/plugins/plugin.lds
|
PLUGIN_LDS := $(APPSDIR)/plugins/plugin.lds
|
||||||
PLUGINLINK_LDS := $(BUILDDIR)/apps/plugins/plugin.link
|
PLUGINLINK_LDS := $(BUILDDIR)/apps/plugins/plugin.link
|
||||||
|
|
||||||
OTHER_INC += -I$(APPSDIR)/plugins
|
OTHER_INC += -I$(APPSDIR)/plugins -I$(APPSDIR)/plugins/lib
|
||||||
|
|
||||||
# special compile flags for plugins:
|
# special compile flags for plugins:
|
||||||
PLUGINFLAGS = -I$(APPSDIR)/plugins -DPLUGIN $(CFLAGS)
|
PLUGINFLAGS = -I$(APPSDIR)/plugins -DPLUGIN $(CFLAGS)
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
#include "plugin.h"
|
#include "plugin.h"
|
||||||
#include "lib/bmp.h"
|
#include "lib/pluginlib_bmp.h"
|
||||||
|
|
||||||
#if defined(HAVE_LCD_COLOR)
|
#if defined(HAVE_LCD_COLOR)
|
||||||
|
|
||||||
|
|
|
@ -29,7 +29,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "plugin.h"
|
#include "plugin.h"
|
||||||
#include "lib/bmp.h"
|
#include "lib/pluginlib_bmp.h"
|
||||||
#include "lib/rgb_hsv.h"
|
#include "lib/rgb_hsv.h"
|
||||||
|
|
||||||
PLUGIN_HEADER
|
PLUGIN_HEADER
|
||||||
|
|
|
@ -21,8 +21,8 @@
|
||||||
|
|
||||||
#include "plugin.h"
|
#include "plugin.h"
|
||||||
#include "lib/grey.h"
|
#include "lib/grey.h"
|
||||||
#include "lib/resize.h"
|
#include "lib/pluginlib_resize.h"
|
||||||
#include "lib/bmp.h"
|
#include "lib/pluginlib_bmp.h"
|
||||||
|
|
||||||
#if LCD_DEPTH == 1
|
#if LCD_DEPTH == 1
|
||||||
#define BMP_LOAD read_bmp_file
|
#define BMP_LOAD read_bmp_file
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
|
|
||||||
#include "plugin.h"
|
#include "plugin.h"
|
||||||
#include "lib/pluginlib_actions.h"
|
#include "lib/pluginlib_actions.h"
|
||||||
#include "lib/bmp.h"
|
#include "lib/pluginlib_bmp.h"
|
||||||
|
|
||||||
PLUGIN_HEADER
|
PLUGIN_HEADER
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue