summaryrefslogtreecommitdiff
path: root/apps/plugins/SOURCES
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/SOURCES')
-rw-r--r--apps/plugins/SOURCES65
1 files changed, 32 insertions, 33 deletions
diff --git a/apps/plugins/SOURCES b/apps/plugins/SOURCES
index 190d625829..a3bfa07296 100644
--- a/apps/plugins/SOURCES
+++ b/apps/plugins/SOURCES
@@ -4,9 +4,11 @@ battery_test.c
4chessclock.c 4chessclock.c
5credits.c 5credits.c
6cube.c 6cube.c
7dict.c
7favorites.c 8favorites.c
8firmware_flash.c 9firmware_flash.c
9logo.c 10logo.c
11metronome.c
10mosaique.c 12mosaique.c
11rockbox_flash.c 13rockbox_flash.c
12search.c 14search.c
@@ -16,23 +18,20 @@ stats.c
16stopwatch.c 18stopwatch.c
17vbrfix.c 19vbrfix.c
18viewer.c 20viewer.c
19dict.c
20metronome.c
21 21
22#ifndef IRIVER_IFP7XX_SERIES /* Temporarily disable plugins for iFP7xx */ 22#ifndef IRIVER_IFP7XX_SERIES /* Temporarily disable plugins for iFP7xx */
23#ifdef HAVE_LCD_BITMAP /* Recorder/Ondio models only */ 23#ifdef HAVE_LCD_BITMAP /* Not for the Player */
24 24
25/* Plugins needing the grayscale lib */ 25#if CONFIG_LCD != LCD_IPOD2BPP /* Plugins needing the grayscale lib */
26#if CONFIG_LCD != LCD_IPOD2BPP
27#ifndef HAVE_LCD_COLOR 26#ifndef HAVE_LCD_COLOR
27grayscale.c
28fire.c 28fire.c
29#endif 29#endif
30plasma.c
31jpeg.c 30jpeg.c
32mandelbrot.c 31mandelbrot.c
32plasma.c
33#endif 33#endif
34 34
35solitaire.c
36bejeweled.c 35bejeweled.c
37bounce.c 36bounce.c
38#if (LCD_WIDTH != 138) && (LCD_WIDTH != 128) 37#if (LCD_WIDTH != 138) && (LCD_WIDTH != 128)
@@ -43,19 +42,15 @@ calculator.c
43chip8.c 42chip8.c
44demystify.c 43demystify.c
45flipit.c 44flipit.c
46grayscale.c
47minesweeper.c 45minesweeper.c
48oscillograph.c 46oscillograph.c
49oscilloscope.c 47oscilloscope.c
50pong.c 48pong.c
51rockblox.c 49rockblox.c
52#if (CONFIG_KEYPAD == RECORDER_PAD) && !defined(SIMULATOR)
53/* loader, only needed for Archos */
54rockboy.c
55#endif
56sliding_puzzle.c 50sliding_puzzle.c
57snake.c 51snake.c
58snake2.c 52snake2.c
53solitaire.c
59sokoban.c 54sokoban.c
60star.c 55star.c
61starfield.c 56starfield.c
@@ -67,38 +62,42 @@ sudoku.c
67video.c 62video.c
68#endif 63#endif
69vu_meter.c 64vu_meter.c
65#if CONFIG_KEYPAD == RECORDER_PAD /* Recorder models only for now */
66wormlet.c
67#endif
70 68
71#ifdef CONFIG_RTC 69#ifdef CONFIG_RTC
72#if CONFIG_KEYPAD == RECORDER_PAD 70#if CONFIG_KEYPAD == RECORDER_PAD /* Recorder models only for now */
73/* Recorder models only for now */
74calendar.c 71calendar.c
75clock.c 72clock.c
76#endif 73#endif
77#endif /* #ifdef CONFIG_RTC */ 74#endif /* CONFIG_RTC */
78 75
79#if CONFIG_KEYPAD != ONDIO_PAD 76#if (MEM <= 8) && !defined(SIMULATOR) /* loaders, only needed for Archos */
80/* gradually bring in the ones not working yet */ 77chessbox.c
81wormlet.c 78#if CONFIG_KEYPAD == RECORDER_PAD
82#endif /* #if CONFIG_KEYPAD != ONDIO_PAD */ 79rockboy.c
83#endif /*#ifdef HAVE_LCD_BITMAP */ 80#endif
81#endif
84 82
85#ifdef HAVE_LCD_CHARCELLS /* Player model only */ 83#endif /* HAVE_LCD_BITMAP */
84
85#ifdef HAVE_LCD_CHARCELLS /* Player model only */
86euroconverter.c 86euroconverter.c
87jackpot.c 87jackpot.c
88nim.c 88nim.c
89#endif /* #ifdef HAVE_LCD_CHARCELLS */ 89#endif /* HAVE_LCD_CHARCELLS */
90
91#ifndef HAVE_MMC
92/* not for Ondio, has no remote control pin */
93alpine_cdc.c
94#endif
95 90
96#if CONFIG_CODEC == SWCODEC /* software codec platforms */ 91#if CONFIG_CODEC == SWCODEC /* software codec platforms */
97mp3_encoder.c
98iriverify.c 92iriverify.c
99wav2wv.c 93mp3_encoder.c
100midi2wav.c 94midi2wav.c
101#else 95wav2wv.c
96#else /* hardware codec platforms */
97#ifndef HAVE_MMC /* not for Ondio, has no remote control pin */
98alpine_cdc.c
99#endif
102splitedit.c 100splitedit.c
101#endif /* CONFIG_CODEC */
102
103#endif /* iFP7xx */ 103#endif /* iFP7xx */
104#endif