You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
312 B
11 lines
312 B
rem flex -L -l lp_rlp.l
|
|
flex -L lp_rlp.l
|
|
rem sed -e "s/^#line.*//g" lex.yy.c >lp_rlp.h
|
|
sed -e "s/yy/lp_yy/g" lex.yy.c | sed -e "s/^#line.*//g" >lp_rlp.h
|
|
rem copy lex.yy.c lp_rlp.h
|
|
del lex.yy.c
|
|
|
|
bison --no-lines -y lp_rlp.y
|
|
sed -e "s/yy/lp_yy/g" y.tab.c >lp_rlp.c
|
|
rem copy y.tab.c lp_rlp.c
|
|
del y.tab.c
|