1
0
Fork 0
forked from len0rd/rockbox

apps/plugins/lib/SOURCES: make it more readable (space, comments, order)

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26143 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Rafaël Carré 2010-05-18 14:14:48 +00:00
parent f8f3fab62c
commit 6e15b710c0

View file

@ -1,4 +1,8 @@
gcc-support.c gcc-support.c
pluginlib_actions.c
helper.c
md5.c
pluginlib_exit.c
jhash.c jhash.c
configfile.c configfile.c
fixedpoint.c fixedpoint.c
@ -7,37 +11,49 @@ rgb_hsv.c
buflib.c buflib.c
display_text.c display_text.c
strncpy.c strncpy.c
#if defined(HAVE_LCD_BITMAP) && (LCD_DEPTH < 4) #if defined(HAVE_LCD_BITMAP) && (LCD_DEPTH < 4)
grey_core.c grey_core.c
grey_draw.c grey_draw.c
grey_parm.c grey_parm.c
grey_scroll.c grey_scroll.c
#ifdef CPU_COLDFIRE #ifdef CPU_COLDFIRE
grey_coldfire.S grey_coldfire.S
#elif CONFIG_CPU == SH7034 #elif CONFIG_CPU == SH7034
grey_sh.S grey_sh.S
#endif #endif
#endif
#endif /* HAVE_LCD_BITMAP && LCD_DEPTH < 4 */
highscore.c highscore.c
#ifndef SIMULATOR #ifndef SIMULATOR
overlay.c overlay.c
#endif #endif
#ifdef HAVE_LCD_CHARCELLS #ifdef HAVE_LCD_CHARCELLS
playergfx.c playergfx.c
#endif #endif
#ifdef RB_PROFILE #ifdef RB_PROFILE
profile_plugin.c profile_plugin.c
#endif #endif
#ifdef HAVE_LCD_BITMAP #ifdef HAVE_LCD_BITMAP
#ifdef CPU_ARM #ifdef CPU_ARM
../../../firmware/target/arm/support-arm.S ../../../firmware/target/arm/support-arm.S
pluginlib_jpeg_idct_arm.S pluginlib_jpeg_idct_arm.S
#endif #endif
pluginlib_jpeg_mem.c pluginlib_jpeg_mem.c
pluginlib_resize.c pluginlib_resize.c
#ifndef HAVE_JPEG #ifndef HAVE_JPEG
pluginlib_jpeg_load.c pluginlib_jpeg_load.c
#endif #endif
checkbox.c checkbox.c
picture.c picture.c
xlcd_core.c xlcd_core.c
@ -45,29 +61,33 @@ xlcd_draw.c
xlcd_scroll.c xlcd_scroll.c
pluginlib_bmp.c pluginlib_bmp.c
read_image.c read_image.c
#ifdef HAVE_LCD_COLOR #ifdef HAVE_LCD_COLOR
bmp_smooth_scale.c bmp_smooth_scale.c
#endif #endif
#if !defined(HAVE_ALBUMART) || !defined(HAVE_JPEG) #if !defined(HAVE_ALBUMART) || !defined(HAVE_JPEG)
pluginlib_albumart.c pluginlib_albumart.c
#endif #endif
#endif
pluginlib_actions.c #endif /* HAVE_LCD_BITMAP */
helper.c
#ifdef HAVE_TOUCHSCREEN #ifdef HAVE_TOUCHSCREEN
pluginlib_touchscreen.c pluginlib_touchscreen.c
#endif #endif
md5.c
#ifndef SIMULATOR #ifndef SIMULATOR
#ifdef CPU_ARM #ifdef CPU_ARM
../../codecs/lib/setjmp_arm.S ../../codecs/lib/setjmp_arm.S
#endif #endif
#ifdef CPU_COLDFIRE #ifdef CPU_COLDFIRE
../../codecs/lib/setjmp_cf.S ../../codecs/lib/setjmp_cf.S
#endif #endif
#ifdef CPU_MIPS #ifdef CPU_MIPS
../../codecs/lib/setjmp_mips.S ../../codecs/lib/setjmp_mips.S
#endif #endif
#endif
pluginlib_exit.c #endif /* !SIMULATOR */