diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2002-09-12 14:03:56 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2002-09-12 14:03:56 +0000 |
| commit | 7b3cea4df3142e05205421a7a3aace98b3233b65 (patch) | |
| tree | 10c91059ca964f5270480666e7702006a1b44526 | |
| parent | e5cb74003db663b8e48e71d7908409067900d7be (diff) | |
| download | rockbox-7b3cea4df3142e05205421a7a3aace98b3233b65.zip rockbox-7b3cea4df3142e05205421a7a3aace98b3233b65.tar.gz rockbox-7b3cea4df3142e05205421a7a3aace98b3233b65.tar.bz2 rockbox-7b3cea4df3142e05205421a7a3aace98b3233b65.tar.xz | |
the script sets ARCHOS_RECORDER instead
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2276 a1c6a512-1295-4272-9138-f99709370657
| -rwxr-xr-x | tools/bdf2fnt | 6 | ||||
| -rw-r--r-- | tools/loadrbf.c | 1 | ||||
| -rw-r--r-- | tools/writerbf.c | 1 |
3 files changed, 3 insertions, 5 deletions
diff --git a/tools/bdf2fnt b/tools/bdf2fnt index 97b8292..1466a0f 100755 --- a/tools/bdf2fnt +++ b/tools/bdf2fnt @@ -14,19 +14,19 @@ ./bdf2c $1.bdf > /tmp/$1.c # compile writerbf with linked C source font -gcc -DFONT=font_$1 -I../firmware -o /tmp/writerbf writerbf.c /tmp/$1.c +gcc -DARCHOS_RECORDER -DFONT=font_$1 -I../firmware -o /tmp/writerbf writerbf.c /tmp/$1.c # run writerbf, will write linked incore font to .rbf format /tmp/writerbf rm /tmp/writerbf # load .rbf font and display it for test -gcc -DMAX_FONT_SIZE=500000 -o /tmp/loadrbf loadrbf.c +gcc -DARCHOS_RECORDER -DMAX_FONT_SIZE=500000 -o /tmp/loadrbf loadrbf.c /tmp/loadrbf $1.fnt > /tmp/$1.1 rm /tmp/loadrbf # link .c font and diff with .fnt load for test -gcc -DFONT=font_$1 -I../firmware -o /tmp/loadrbf loadrbf.c /tmp/$1.c +gcc -DARCHOS_RECORDER -DFONT=font_$1 -I../firmware -o /tmp/loadrbf loadrbf.c /tmp/$1.c /tmp/loadrbf > /tmp/$1.2 rm /tmp/loadrbf diff --git a/tools/loadrbf.c b/tools/loadrbf.c index 50cb03d..769195e 100644 --- a/tools/loadrbf.c +++ b/tools/loadrbf.c @@ -10,7 +10,6 @@ #include <stdio.h> /* this should go in a library...*/ -#define ARCHOS_RECORDER #define DEBUGF printf #include "../firmware/loadfont.c" diff --git a/tools/writerbf.c b/tools/writerbf.c index 7936d07..b3ba864 100644 --- a/tools/writerbf.c +++ b/tools/writerbf.c @@ -6,7 +6,6 @@ * Copyright (c) 2002 by Greg Haerr <greg@censoft.com> */ #include <stdio.h> -#define ARCHOS_RECORDER #include "../firmware/font.h" extern MWCFONT FONT; |