summaryrefslogtreecommitdiff
path: root/utils/newparser/Makefile
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2010-06-11 04:47:46 +0000
committerJonathan Gordon <rockbox@jdgordon.info>2010-06-11 04:47:46 +0000
commitb4a9564790575c645d855c23f7f2e07ae03c1c19 (patch)
tree39aa7fa77345edb78f4b4e9a9745aaf88c69f689 /utils/newparser/Makefile
parent45c7498f59ad2889f2120a865a51043004eddd5d (diff)
downloadrockbox-b4a9564790575c645d855c23f7f2e07ae03c1c19.tar.gz
rockbox-b4a9564790575c645d855c23f7f2e07ae03c1c19.zip
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/Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/utils/newparser/Makefile b/utils/newparser/Makefile
new file mode 100644
index 0000000000..5a0e76f140
--- /dev/null
+++ b/utils/newparser/Makefile
@@ -0,0 +1,3 @@
1all:
2 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
3