diff options
| author | Jonathan Gordon <rockbox@jdgordon.info> | 2010-06-11 04:47:46 +0000 |
|---|---|---|
| committer | Jonathan Gordon <rockbox@jdgordon.info> | 2010-06-11 04:47:46 +0000 |
| commit | b4a9564790575c645d855c23f7f2e07ae03c1c19 (patch) | |
| tree | 39aa7fa77345edb78f4b4e9a9745aaf88c69f689 /utils/newparser/Makefile | |
| parent | 45c7498f59ad2889f2120a865a51043004eddd5d (diff) | |
| download | rockbox-b4a9564790575c645d855c23f7f2e07ae03c1c19.zip rockbox-b4a9564790575c645d855c23f7f2e07ae03c1c19.tar.gz rockbox-b4a9564790575c645d855c23f7f2e07ae03c1c19.tar.bz2 rockbox-b4a9564790575c645d855c23f7f2e07ae03c1c19.tar.xz | |
Add my new parser playground to svn.
Currently it can load a skin, and walk the parse tree and output the tags as required. It always chooses the first value for a conditional and subline, but a good working start
there seems to be a error in the new parser if ROCKBOX is defined... need to fix that
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26757 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'utils/newparser/Makefile')
| -rw-r--r-- | utils/newparser/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/utils/newparser/Makefile b/utils/newparser/Makefile new file mode 100644 index 0000000..5a0e76f --- /dev/null +++ b/utils/newparser/Makefile @@ -0,0 +1,3 @@ +all: + gcc -I../themeeditor -g -Wall -o newparser newparser.c skin_render.c handle_tags.c ../themeeditor/skin_parser.c ../themeeditor/skin_scan.c ../themeeditor/skin_debug.c ../themeeditor/tag_table.c + |