Hi,
I've configured and run make
under cygwin. The configure have not
creatred links to sources, soI just copied the
stuff into subdirs of the build dir.
After that, I am getting
====================================
flex -oscan.c scan.l
bison -dv -b htcobol htcobol.y 
htcobol.y: conflicts: 182 shift/reduce
gcc -v -I/usr/include -I../lib -I../  -c htcobol.tab.c
... The parser then compiles, but scan.c shows this:
...
scan.c:1134: parse error before "YY_PROTO"
scan.l:133: parse error before "switch"
scan.l:136: redefinition of `yy_start'
scan.c:272: `yy_start' previously defined here
scan.l:136: warning: data definition has no type or storage class
scan.l:137: parse error before "break"
scan.l:140: redefinition of `yy_start'
scan.l:136: `yy_start' previously defined here
scan.l:140: warning: data definition has no type or storage class
scan.l:141: parse error before "break"
scan.l:144: redefinition of `yy_start'
scan.l:140: `yy_start' previously defined here
scan.l:144: warning: data definition has no type or storage class
scan.l:145: parse error before "break"
scan.l:149: redefinition of `yy_start'
scan.l:144: `yy_start' previously defined here
... etc.
======================================

What's wrong?   Thank you,  - Alex