summaryrefslogtreecommitdiff
path: root/apps/plugins/SUBDIRS
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/SUBDIRS')
-rw-r--r--apps/plugins/SUBDIRS30
1 files changed, 16 insertions, 14 deletions
diff --git a/apps/plugins/SUBDIRS b/apps/plugins/SUBDIRS
index 1c7f969c02..2a88e7d1b1 100644
--- a/apps/plugins/SUBDIRS
+++ b/apps/plugins/SUBDIRS
@@ -1,5 +1,3 @@
1#if !defined(IRIVER_IFP7XX_SERIES)
2
3/* For all targets */ 1/* For all targets */
4shortcuts 2shortcuts
5 3
@@ -10,32 +8,38 @@ clock
10#endif 8#endif
11 9
12#if (CONFIG_KEYPAD == RECORDER_PAD) || defined(HAVE_LCD_COLOR) \ 10#if (CONFIG_KEYPAD == RECORDER_PAD) || defined(HAVE_LCD_COLOR) \
13 || defined(IRIVER_H100_SERIES) || defined(IAUDIO_M5) 11 || defined(IRIVER_H100_SERIES) || defined(IAUDIO_M5) /* FIXME */
14rockboy 12rockboy
15#endif 13#endif
16 14
17/* For all targets with a bitmap display */ 15/* For all targets with a bitmap display */
18#ifdef HAVE_LCD_BITMAP 16#ifdef HAVE_LCD_BITMAP
17
19#ifdef HAVE_TAGCACHE 18#ifdef HAVE_TAGCACHE
20pictureflow 19pictureflow
21#endif 20#endif
21
22#if (CONFIG_CODEC == SWCODEC) 22#if (CONFIG_CODEC == SWCODEC)
23fft 23fft
24#endif 24#endif
25
25chessbox 26chessbox
26fractals 27fractals
27imageviewer 28imageviewer
28sudoku 29sudoku
29reversi 30reversi
30goban 31goban
32
31/* setjmp/longjmp are not implemented on sh */ 33/* setjmp/longjmp are not implemented on sh */
32#if (CONFIG_CPU != SH7034) 34#if (CONFIG_CPU != SH7034)
33frotz 35frotz
34#endif 36#endif
37
35#ifndef OLYMPUS_MROBE_500 38#ifndef OLYMPUS_MROBE_500
36zxbox 39zxbox
37#endif 40#endif
38#endif 41
42#endif /* HAVE_LCD_BITMAP */
39 43
40/* For all big enough colour screens, iriver H1x0 and iAudio M5 */ 44/* For all big enough colour screens, iriver H1x0 and iAudio M5 */
41#if defined(HAVE_LCD_COLOR) && LCD_HEIGHT > 96\ 45#if defined(HAVE_LCD_COLOR) && LCD_HEIGHT > 96\
@@ -43,32 +47,30 @@ zxbox
43pacbox 47pacbox
44#endif 48#endif
45 49
46/* For all the color targets */
47#if (defined(HAVE_LCD_COLOR) || defined(MROBE_100) || \ 50#if (defined(HAVE_LCD_COLOR) || defined(MROBE_100) || \
48 (LCD_DEPTH == 2) && !defined(ARCHOS_AV300)) && (MEMORYSIZE > 2) 51 (LCD_DEPTH == 2) && !defined(ARCHOS_AV300)) && (MEMORYSIZE > 2) && \
49#ifndef RB_PROFILE 52 !defined(RB_PROFILE)
50doom 53doom
51#endif 54#endif
52#endif
53 55
54/* For all the swcodec targets */ 56/* For all the swcodec targets */
55#if CONFIG_CODEC == SWCODEC 57#if CONFIG_CODEC == SWCODEC
58
56midi 59midi
60
57/* beatbox */ 61/* beatbox */
58#if defined(IRIVER_H300_SERIES) || defined(IRIVER_H100_SERIES) 62#if defined(IRIVER_H300_SERIES) || defined(IRIVER_H100_SERIES)
59/* PDBox is confirmed to run on these player models. */ 63/* PDBox is confirmed to run on these player models. */
60pdbox 64pdbox
61#endif 65#endif
62#ifndef RB_PROFILE 66
63#if MEMORYSIZE > 2 /* mpegplayer allocates at least 2MB of RAM */ 67#if !defined(RB_PROFILE) && MEMORYSIZE > 2 /* mpegplayer allocates at least 2MB of RAM */
64mpegplayer 68mpegplayer
65#endif 69#endif
66#endif 70
67#endif 71#endif /* CONFIG_CODEC == SWCODEC */
68 72
69/* Lua needs at least 160 KB to work in */ 73/* Lua needs at least 160 KB to work in */
70#if (PLUGIN_BUFFER_SIZE >= 0x80000) 74#if (PLUGIN_BUFFER_SIZE >= 0x80000)
71lua 75lua
72#endif 76#endif
73
74#endif /* IRIVER_IFP7XX_SERIES */