summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-09-12 14:08:42 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-09-12 14:08:42 +0000
commit31a48ea1f83d98207bf6a524d172f33290f2fdfd (patch)
treed8663d13913527bacb2692d9b715db60da65ba0a /tools
parent7b3cea4df3142e05205421a7a3aace98b3233b65 (diff)
downloadrockbox-31a48ea1f83d98207bf6a524d172f33290f2fdfd.tar.gz
rockbox-31a48ea1f83d98207bf6a524d172f33290f2fdfd.zip
setup the include path better
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2277 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools')
-rwxr-xr-xtools/bdf2fnt6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/bdf2fnt b/tools/bdf2fnt
index 1466a0f1ef..2793d11764 100755
--- a/tools/bdf2fnt
+++ b/tools/bdf2fnt
@@ -14,19 +14,19 @@
14./bdf2c $1.bdf > /tmp/$1.c 14./bdf2c $1.bdf > /tmp/$1.c
15 15
16# compile writerbf with linked C source font 16# compile writerbf with linked C source font
17gcc -DARCHOS_RECORDER -DFONT=font_$1 -I../firmware -o /tmp/writerbf writerbf.c /tmp/$1.c 17gcc -DARCHOS_RECORDER -DFONT=font_$1 -I../firmware -I../firmware/common -o /tmp/writerbf writerbf.c /tmp/$1.c
18 18
19# run writerbf, will write linked incore font to .rbf format 19# run writerbf, will write linked incore font to .rbf format
20/tmp/writerbf 20/tmp/writerbf
21rm /tmp/writerbf 21rm /tmp/writerbf
22 22
23# load .rbf font and display it for test 23# load .rbf font and display it for test
24gcc -DARCHOS_RECORDER -DMAX_FONT_SIZE=500000 -o /tmp/loadrbf loadrbf.c 24gcc -DARCHOS_RECORDER -DMAX_FONT_SIZE=500000 -I../firmware/common -o /tmp/loadrbf loadrbf.c
25/tmp/loadrbf $1.fnt > /tmp/$1.1 25/tmp/loadrbf $1.fnt > /tmp/$1.1
26rm /tmp/loadrbf 26rm /tmp/loadrbf
27 27
28# link .c font and diff with .fnt load for test 28# link .c font and diff with .fnt load for test
29gcc -DARCHOS_RECORDER -DFONT=font_$1 -I../firmware -o /tmp/loadrbf loadrbf.c /tmp/$1.c 29gcc -DARCHOS_RECORDER -DFONT=font_$1 -I../firmware -I../firmware/common -o /tmp/loadrbf loadrbf.c /tmp/$1.c
30/tmp/loadrbf > /tmp/$1.2 30/tmp/loadrbf > /tmp/$1.2
31rm /tmp/loadrbf 31rm /tmp/loadrbf
32 32