Warning, /frameworks/kjs/src/kjs/create_parser is written in an unsupported language. File is not indexed.

0001 
0002 #!/bin/sh
0003 
0004 #
0005 # A replacement for the make parser target until someone figures out
0006 # how to do that in CMake.
0007 #
0008 
0009 bison -d -p kjsyy grammar.y && mv grammar.tab.c grammar.cpp;
0010 if test -f grammar.tab.h;
0011 then
0012 if cmp -s grammar.tab.h grammar.h; then rm -f grammar.tab.h;
0013 else mv grammar.tab.h grammar.h;
0014 fi
0015 else :;
0016 fi