1
0
Fork 0
forked from len0rd/rockbox

Let SOURCES handle the sim exclusion for metronome

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11360 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Martin Arver 2006-10-27 11:24:13 +00:00
parent 522ae6e39a
commit 2c1eec5533
2 changed files with 6 additions and 4 deletions

View file

@ -7,7 +7,6 @@ dict.c
favorites.c favorites.c
firmware_flash.c firmware_flash.c
logo.c logo.c
metronome.c
mosaique.c mosaique.c
random_folder_advance_config.c random_folder_advance_config.c
#if (LCD_WIDTH != 240) && ((LCD_WIDTH != 128) || (LCD_HEIGHT != 64)) && !defined(SANSA_E200) #if (LCD_WIDTH != 240) && ((LCD_WIDTH != 128) || (LCD_HEIGHT != 64)) && !defined(SANSA_E200)
@ -22,6 +21,11 @@ stopwatch.c
vbrfix.c vbrfix.c
viewer.c viewer.c
/* plugins built for all targets, but not for the simulator */
#if !defined(SIMULATOR)
metronome.c
#endif
#if ((CONFIG_CODEC == MAS3587F) || (CONFIG_CODEC == MAS3539F)) && !defined(SIMULATOR) #if ((CONFIG_CODEC == MAS3587F) || (CONFIG_CODEC == MAS3539F)) && !defined(SIMULATOR)
wavplay.c wavplay.c
#endif #endif

View file

@ -18,8 +18,6 @@
****************************************************************************/ ****************************************************************************/
#include "plugin.h" #include "plugin.h"
#if !defined(SIMULATOR)
PLUGIN_HEADER PLUGIN_HEADER
/* variable button definitions */ /* variable button definitions */
@ -1081,4 +1079,4 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter){
} }
} }
} }
#endif /* #ifndef SIMULATOR */