summaryrefslogtreecommitdiff
path: root/apps/plugins/SUBDIRS
diff options
context:
space:
mode:
authorDave Chapman <dave@dchapman.com>2006-04-01 13:32:16 +0000
committerDave Chapman <dave@dchapman.com>2006-04-01 13:32:16 +0000
commit3d253c6ccfa735a4831b1f825a4ed870d7ac8ccb (patch)
treef0a2f2554da51f16583baf15b4ddec18e6dee4c2 /apps/plugins/SUBDIRS
parent8c15138008b108a0ab3d90ef9f09c6d3fc59f740 (diff)
downloadrockbox-3d253c6ccfa735a4831b1f825a4ed870d7ac8ccb.tar.gz
rockbox-3d253c6ccfa735a4831b1f825a4ed870d7ac8ccb.zip
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
Diffstat (limited to 'apps/plugins/SUBDIRS')
-rw-r--r--apps/plugins/SUBDIRS32
1 files changed, 32 insertions, 0 deletions
diff --git a/apps/plugins/SUBDIRS b/apps/plugins/SUBDIRS
new file mode 100644
index 0000000000..01d9540531
--- /dev/null
+++ b/apps/plugins/SUBDIRS
@@ -0,0 +1,32 @@
1#ifndef IRIVER_IFP7XX_SERIES
2
3/* For all targets */
4databox
5
6/* For various targets... */
7#if (CONFIG_KEYPAD == RECORDER_PAD) || \
8 (CONFIG_KEYPAD == IRIVER_H100_PAD) || \
9 (CONFIG_KEYPAD == IRIVER_H300_PAD) || \
10 defined(IPOD_COLOR) || \
11 defined(IPOD_VIDEO) || \
12 defined(TOSHIBA_GIGABEAT_F)
13rockboy
14#endif
15
16/* For all targets with a bitmap display */
17#ifdef HAVE_LCD_BITMAP
18chessbox
19#endif
20
21/* For all the colour targets and iriver H1x0 */
22#if defined(HAVE_LCD_COLOR) || defined(IRIVER_H100_SERIES)
23pacbox
24#endif
25
26/* For all the color targets apart from the Gigabeat */
27#if defined(HAVE_LCD_COLOR) && !defined(TOSHIBA_GIGABEAT_F)
28doom
29#endif
30
31
32#endif /* IRIVER_IFP7XX_SERIES */