diff options
| author | Rafaël Carré <rafael.carre@gmail.com> | 2010-05-17 18:16:45 +0000 |
|---|---|---|
| committer | Rafaël Carré <rafael.carre@gmail.com> | 2010-05-17 18:16:45 +0000 |
| commit | ec6476c14adc83869862eef82fa3d4a25b971865 (patch) | |
| tree | 9d2635f8076c7b7fe1d9393646fa7a0da3df9e8f /apps/plugins/SUBDIRS | |
| parent | c4c7069a8a0b4ffc5de8758c2aa154118449aa62 (diff) | |
| download | rockbox-ec6476c14adc83869862eef82fa3d4a25b971865.zip rockbox-ec6476c14adc83869862eef82fa3d4a25b971865.tar.gz rockbox-ec6476c14adc83869862eef82fa3d4a25b971865.tar.bz2 rockbox-ec6476c14adc83869862eef82fa3d4a25b971865.tar.xz | |
plugins: reorder SOURCES conditions to be more readable
change a lot of conditions to be more understandable
add some spacing
remove ifp conditions as disabling plugins can be done in configure
SUBDIRS: concatenate some conditions and add comments
No changes expected (no plugins added / removed) for working targets
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26114 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/SUBDIRS')
| -rw-r--r-- | apps/plugins/SUBDIRS | 30 |
1 files changed, 16 insertions, 14 deletions
diff --git a/apps/plugins/SUBDIRS b/apps/plugins/SUBDIRS index 1c7f969..2a88e7d 100644 --- a/apps/plugins/SUBDIRS +++ b/apps/plugins/SUBDIRS @@ -1,5 +1,3 @@ -#if !defined(IRIVER_IFP7XX_SERIES) - /* For all targets */ shortcuts @@ -10,32 +8,38 @@ clock #endif #if (CONFIG_KEYPAD == RECORDER_PAD) || defined(HAVE_LCD_COLOR) \ - || defined(IRIVER_H100_SERIES) || defined(IAUDIO_M5) + || defined(IRIVER_H100_SERIES) || defined(IAUDIO_M5) /* FIXME */ rockboy #endif /* For all targets with a bitmap display */ #ifdef HAVE_LCD_BITMAP + #ifdef HAVE_TAGCACHE pictureflow #endif + #if (CONFIG_CODEC == SWCODEC) fft #endif + chessbox fractals imageviewer sudoku reversi goban + /* setjmp/longjmp are not implemented on sh */ #if (CONFIG_CPU != SH7034) frotz #endif + #ifndef OLYMPUS_MROBE_500 zxbox #endif -#endif + +#endif /* HAVE_LCD_BITMAP */ /* For all big enough colour screens, iriver H1x0 and iAudio M5 */ #if defined(HAVE_LCD_COLOR) && LCD_HEIGHT > 96\ @@ -43,32 +47,30 @@ zxbox pacbox #endif -/* For all the color targets */ #if (defined(HAVE_LCD_COLOR) || defined(MROBE_100) || \ - (LCD_DEPTH == 2) && !defined(ARCHOS_AV300)) && (MEMORYSIZE > 2) -#ifndef RB_PROFILE + (LCD_DEPTH == 2) && !defined(ARCHOS_AV300)) && (MEMORYSIZE > 2) && \ + !defined(RB_PROFILE) doom #endif -#endif /* For all the swcodec targets */ #if CONFIG_CODEC == SWCODEC + midi + /* beatbox */ #if defined(IRIVER_H300_SERIES) || defined(IRIVER_H100_SERIES) /* PDBox is confirmed to run on these player models. */ pdbox #endif -#ifndef RB_PROFILE -#if MEMORYSIZE > 2 /* mpegplayer allocates at least 2MB of RAM */ + +#if !defined(RB_PROFILE) && MEMORYSIZE > 2 /* mpegplayer allocates at least 2MB of RAM */ mpegplayer #endif -#endif -#endif + +#endif /* CONFIG_CODEC == SWCODEC */ /* Lua needs at least 160 KB to work in */ #if (PLUGIN_BUFFER_SIZE >= 0x80000) lua #endif - -#endif /* IRIVER_IFP7XX_SERIES */ |