forked from len0rd/rockbox
Add apps/plugins/SUBDIRS file for specifying when to build each of the multi-file plugins instead of specifying it directly in the Makefile
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9397 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
8c15138008
commit
3d253c6ccf
3 changed files with 49 additions and 33 deletions
32
apps/plugins/SUBDIRS
Normal file
32
apps/plugins/SUBDIRS
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
#ifndef IRIVER_IFP7XX_SERIES
|
||||
|
||||
/* For all targets */
|
||||
databox
|
||||
|
||||
/* For various targets... */
|
||||
#if (CONFIG_KEYPAD == RECORDER_PAD) || \
|
||||
(CONFIG_KEYPAD == IRIVER_H100_PAD) || \
|
||||
(CONFIG_KEYPAD == IRIVER_H300_PAD) || \
|
||||
defined(IPOD_COLOR) || \
|
||||
defined(IPOD_VIDEO) || \
|
||||
defined(TOSHIBA_GIGABEAT_F)
|
||||
rockboy
|
||||
#endif
|
||||
|
||||
/* For all targets with a bitmap display */
|
||||
#ifdef HAVE_LCD_BITMAP
|
||||
chessbox
|
||||
#endif
|
||||
|
||||
/* For all the colour targets and iriver H1x0 */
|
||||
#if defined(HAVE_LCD_COLOR) || defined(IRIVER_H100_SERIES)
|
||||
pacbox
|
||||
#endif
|
||||
|
||||
/* For all the color targets apart from the Gigabeat */
|
||||
#if defined(HAVE_LCD_COLOR) && !defined(TOSHIBA_GIGABEAT_F)
|
||||
doom
|
||||
#endif
|
||||
|
||||
|
||||
#endif /* IRIVER_IFP7XX_SERIES */
|
||||
Loading…
Add table
Add a link
Reference in a new issue