mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-12-16 06:18:43 +00:00
10 lines
279 B
Batchfile
10 lines
279 B
Batchfile
|
@echo off
|
||
|
echo Generating cf_lexical.cpp
|
||
|
flex -f -8 -Pcf -Scf_flex.skl -ocf_lexical.cpp cf_lexical.lpp
|
||
|
|
||
|
echo Generating cf_gramatical.cpp
|
||
|
set BISON_SIMPLE=cf_bison.simple
|
||
|
bison -d -p cf -o cf_gramatical.cpp cf_gramatical.ypp
|
||
|
move cf_gramatical.hpp cf_gramatical.h
|
||
|
pause
|