forked from len0rd/rockbox
setup the include path better
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2277 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
7b3cea4df3
commit
31a48ea1f8
1 changed files with 3 additions and 3 deletions
|
|
@ -14,19 +14,19 @@
|
||||||
./bdf2c $1.bdf > /tmp/$1.c
|
./bdf2c $1.bdf > /tmp/$1.c
|
||||||
|
|
||||||
# compile writerbf with linked C source font
|
# compile writerbf with linked C source font
|
||||||
gcc -DARCHOS_RECORDER -DFONT=font_$1 -I../firmware -o /tmp/writerbf writerbf.c /tmp/$1.c
|
gcc -DARCHOS_RECORDER -DFONT=font_$1 -I../firmware -I../firmware/common -o /tmp/writerbf writerbf.c /tmp/$1.c
|
||||||
|
|
||||||
# run writerbf, will write linked incore font to .rbf format
|
# run writerbf, will write linked incore font to .rbf format
|
||||||
/tmp/writerbf
|
/tmp/writerbf
|
||||||
rm /tmp/writerbf
|
rm /tmp/writerbf
|
||||||
|
|
||||||
# load .rbf font and display it for test
|
# load .rbf font and display it for test
|
||||||
gcc -DARCHOS_RECORDER -DMAX_FONT_SIZE=500000 -o /tmp/loadrbf loadrbf.c
|
gcc -DARCHOS_RECORDER -DMAX_FONT_SIZE=500000 -I../firmware/common -o /tmp/loadrbf loadrbf.c
|
||||||
/tmp/loadrbf $1.fnt > /tmp/$1.1
|
/tmp/loadrbf $1.fnt > /tmp/$1.1
|
||||||
rm /tmp/loadrbf
|
rm /tmp/loadrbf
|
||||||
|
|
||||||
# link .c font and diff with .fnt load for test
|
# link .c font and diff with .fnt load for test
|
||||||
gcc -DARCHOS_RECORDER -DFONT=font_$1 -I../firmware -o /tmp/loadrbf loadrbf.c /tmp/$1.c
|
gcc -DARCHOS_RECORDER -DFONT=font_$1 -I../firmware -I../firmware/common -o /tmp/loadrbf loadrbf.c /tmp/$1.c
|
||||||
/tmp/loadrbf > /tmp/$1.2
|
/tmp/loadrbf > /tmp/$1.2
|
||||||
rm /tmp/loadrbf
|
rm /tmp/loadrbf
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue