forked from len0rd/rockbox
Move checkwps to its own subdir in preparation for compiling target-specific versions. Also remove a DEBUGF that should not have been left in.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16827 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
2ce440d740
commit
3d88eddb83
3 changed files with 19 additions and 1 deletions
|
@ -393,7 +393,7 @@ static bool load_bitmap(struct wps_data *wps_data,
|
||||||
int ret = read_bmp_file(filename, bm,
|
int ret = read_bmp_file(filename, bm,
|
||||||
wps_data->img_buf_free,
|
wps_data->img_buf_free,
|
||||||
format);
|
format);
|
||||||
DEBUGF("Read %s, ret=%d\n",filename,ret);
|
|
||||||
if (ret > 0)
|
if (ret > 0)
|
||||||
{
|
{
|
||||||
#if LCD_DEPTH == 16
|
#if LCD_DEPTH == 16
|
||||||
|
|
18
tools/checkwps/Makefile
Normal file
18
tools/checkwps/Makefile
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
# __________ __ ___.
|
||||||
|
# Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
||||||
|
# Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
||||||
|
# Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
||||||
|
# Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
||||||
|
# \/ \/ \/ \/ \/
|
||||||
|
# $Id: Makefile 16822 2008-03-26 18:18:22Z dave $
|
||||||
|
#
|
||||||
|
|
||||||
|
all: checkwps
|
||||||
|
|
||||||
|
checkwps: checkwps.c ../../apps/gui/wps_parser.c ../../apps/gui/wps_debug.c ../../firmware/common/ctype.c ../../apps/misc.c ../../apps/recorder/bmp.c
|
||||||
|
$(SILENT)$(CC) -g -I ../../apps/gui -I../../firmware/export \
|
||||||
|
-D__PCTOOL__ -DDEBUG -DROCKBOX_HAS_LOGF -DIPOD_COLOR -D ROCKBOX_DIR_LEN -D WPS_DIR=\".\" \
|
||||||
|
-I../../apps -I../../firmware/target/arm/ipod -I../../firmware/include $+ -o $@
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -f cleanwps
|
Loading…
Add table
Add a link
Reference in a new issue