summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonas Häggqvist <rasher@rasher.dk>2007-11-27 01:43:28 +0000
committerJonas Häggqvist <rasher@rasher.dk>2007-11-27 01:43:28 +0000
commit00d0a3a6613fa56448bd210baf273a57691a14c5 (patch)
tree43ca0136cf3a7f3563991f3341ceda7bcbb3a15f
parent923cbe322448ba6941ceb2165eae95dcd34bfd36 (diff)
downloadrockbox-00d0a3a6613fa56448bd210baf273a57691a14c5.tar.gz
rockbox-00d0a3a6613fa56448bd210baf273a57691a14c5.zip
Only compile Matrix on non-mono targets, rather than all bitmap targets.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15831 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/plugins/SOURCES5
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/plugins/SOURCES b/apps/plugins/SOURCES
index 609afb2b97..727e5a8f1e 100644
--- a/apps/plugins/SOURCES
+++ b/apps/plugins/SOURCES
@@ -44,7 +44,6 @@ disktidy.c
44flipit.c 44flipit.c
45 45
46#ifdef HAVE_LCD_BITMAP /* Not for the Player */ 46#ifdef HAVE_LCD_BITMAP /* Not for the Player */
47matrix.c
48maze.c 47maze.c
49mazezam.c 48mazezam.c
50text_editor.c 49text_editor.c
@@ -133,6 +132,10 @@ alpine_cdc.c
133splitedit.c 132splitedit.c
134#endif /* CONFIG_CODEC */ 133#endif /* CONFIG_CODEC */
135 134
135#if LCD_DEPTH > 1 /* non-mono bitmap targets */
136matrix.c
137#endif
138
136/* Platform-specific plugins */ 139/* Platform-specific plugins */
137#if defined(IRIVER_H100_SERIES) || defined(IRIVER_H300_SERIES) 140#if defined(IRIVER_H100_SERIES) || defined(IRIVER_H300_SERIES)
138iriverify.c 141iriverify.c