summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRafaël Carré <rafael.carre@gmail.com>2010-05-18 14:14:48 +0000
committerRafaël Carré <rafael.carre@gmail.com>2010-05-18 14:14:48 +0000
commit6e15b710c0eb3353ef6b17d07424b80058e5e88f (patch)
tree92a4e34b3338033acd5d56754b429c34de6901cd
parentf8f3fab62ce4295e63f1e2e658e0753da473e4eb (diff)
downloadrockbox-6e15b710c0eb3353ef6b17d07424b80058e5e88f.tar.gz
rockbox-6e15b710c0eb3353ef6b17d07424b80058e5e88f.zip
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
-rw-r--r--apps/plugins/lib/SOURCES34
1 files changed, 27 insertions, 7 deletions
diff --git a/apps/plugins/lib/SOURCES b/apps/plugins/lib/SOURCES
index 82807d15ee..8c160e1cc4 100644
--- a/apps/plugins/lib/SOURCES
+++ b/apps/plugins/lib/SOURCES
@@ -1,4 +1,8 @@
1gcc-support.c 1gcc-support.c
2pluginlib_actions.c
3helper.c
4md5.c
5pluginlib_exit.c
2jhash.c 6jhash.c
3configfile.c 7configfile.c
4fixedpoint.c 8fixedpoint.c
@@ -7,37 +11,49 @@ rgb_hsv.c
7buflib.c 11buflib.c
8display_text.c 12display_text.c
9strncpy.c 13strncpy.c
14
10#if defined(HAVE_LCD_BITMAP) && (LCD_DEPTH < 4) 15#if defined(HAVE_LCD_BITMAP) && (LCD_DEPTH < 4)
11grey_core.c 16grey_core.c
12grey_draw.c 17grey_draw.c
13grey_parm.c 18grey_parm.c
14grey_scroll.c 19grey_scroll.c
20
15#ifdef CPU_COLDFIRE 21#ifdef CPU_COLDFIRE
16grey_coldfire.S 22grey_coldfire.S
17#elif CONFIG_CPU == SH7034 23#elif CONFIG_CPU == SH7034
18grey_sh.S 24grey_sh.S
19#endif 25#endif
20#endif 26
27#endif /* HAVE_LCD_BITMAP && LCD_DEPTH < 4 */
28
21highscore.c 29highscore.c
30
22#ifndef SIMULATOR 31#ifndef SIMULATOR
23overlay.c 32overlay.c
24#endif 33#endif
34
25#ifdef HAVE_LCD_CHARCELLS 35#ifdef HAVE_LCD_CHARCELLS
26playergfx.c 36playergfx.c
27#endif 37#endif
38
28#ifdef RB_PROFILE 39#ifdef RB_PROFILE
29profile_plugin.c 40profile_plugin.c
30#endif 41#endif
42
31#ifdef HAVE_LCD_BITMAP 43#ifdef HAVE_LCD_BITMAP
44
32#ifdef CPU_ARM 45#ifdef CPU_ARM
33../../../firmware/target/arm/support-arm.S 46../../../firmware/target/arm/support-arm.S
34pluginlib_jpeg_idct_arm.S 47pluginlib_jpeg_idct_arm.S
35#endif 48#endif
49
36pluginlib_jpeg_mem.c 50pluginlib_jpeg_mem.c
37pluginlib_resize.c 51pluginlib_resize.c
52
38#ifndef HAVE_JPEG 53#ifndef HAVE_JPEG
39pluginlib_jpeg_load.c 54pluginlib_jpeg_load.c
40#endif 55#endif
56
41checkbox.c 57checkbox.c
42picture.c 58picture.c
43xlcd_core.c 59xlcd_core.c
@@ -45,29 +61,33 @@ xlcd_draw.c
45xlcd_scroll.c 61xlcd_scroll.c
46pluginlib_bmp.c 62pluginlib_bmp.c
47read_image.c 63read_image.c
64
48#ifdef HAVE_LCD_COLOR 65#ifdef HAVE_LCD_COLOR
49bmp_smooth_scale.c 66bmp_smooth_scale.c
50#endif 67#endif
68
51#if !defined(HAVE_ALBUMART) || !defined(HAVE_JPEG) 69#if !defined(HAVE_ALBUMART) || !defined(HAVE_JPEG)
52pluginlib_albumart.c 70pluginlib_albumart.c
53#endif 71#endif
54#endif 72
55pluginlib_actions.c 73#endif /* HAVE_LCD_BITMAP */
56helper.c 74
57#ifdef HAVE_TOUCHSCREEN 75#ifdef HAVE_TOUCHSCREEN
58pluginlib_touchscreen.c 76pluginlib_touchscreen.c
59#endif 77#endif
60md5.c
61 78
62#ifndef SIMULATOR 79#ifndef SIMULATOR
80
63#ifdef CPU_ARM 81#ifdef CPU_ARM
64../../codecs/lib/setjmp_arm.S 82../../codecs/lib/setjmp_arm.S
65#endif 83#endif
84
66#ifdef CPU_COLDFIRE 85#ifdef CPU_COLDFIRE
67../../codecs/lib/setjmp_cf.S 86../../codecs/lib/setjmp_cf.S
68#endif 87#endif
88
69#ifdef CPU_MIPS 89#ifdef CPU_MIPS
70../../codecs/lib/setjmp_mips.S 90../../codecs/lib/setjmp_mips.S
71#endif 91#endif
72#endif 92
73pluginlib_exit.c 93#endif /* !SIMULATOR */