mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-24 19:02:48 +00:00
17 lines
313 B
Text
17 lines
313 B
Text
![]() |
|
||
|
#!/bin/sh
|
||
|
|
||
|
#
|
||
|
# A replacement for the make parser target until someone figures out
|
||
|
# how to do that in CMake.
|
||
|
#
|
||
|
|
||
|
bison -d -p kjsyy grammar.y && mv grammar.tab.c grammar.cpp;
|
||
|
if test -f grammar.tab.h;
|
||
|
then
|
||
|
if cmp -s grammar.tab.h grammar.h; then rm -f grammar.tab.h;
|
||
|
else mv grammar.tab.h grammar.h;
|
||
|
fi
|
||
|
else :;
|
||
|
fi
|