mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-13 18:17:39 -04:00
New makefile solution: A single invocation of 'make' to build the entire tree. Fully controlled dependencies give faster and more correct recompiles.
Many #include lines adjusted to conform to the new standards. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19146 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
f66c303467
commit
c6b3d38a15
221 changed files with 2081 additions and 3657 deletions
|
@ -29,7 +29,7 @@
|
|||
*/
|
||||
|
||||
#include "plugin.h"
|
||||
#include "pluginlib_actions.h"
|
||||
#include "lib/pluginlib_actions.h"
|
||||
|
||||
/* This macros must always be included. Should be placed at the top by
|
||||
convention, although the actual position doesn't matter */
|
||||
|
@ -489,6 +489,14 @@ static char* messages[] =
|
|||
#define ROBOT 0
|
||||
#define KITTEN 1
|
||||
|
||||
/* if SYSFONT_WIDTH is 0 (which it is during dependency generation) gcc
|
||||
will abort (div by 0) and this plugin won't get any dependencies
|
||||
*/
|
||||
#if SYSFONT_WIDTH < 1
|
||||
#define SYSFONT_WIDTH 10
|
||||
#define SYSFONT_HEIGHT 10
|
||||
#endif
|
||||
|
||||
/*Screen dimensions.*/
|
||||
#define X_MIN 0
|
||||
#define X_MAX ((LCD_WIDTH/SYSFONT_WIDTH) - 1)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue