项目作者: zsoltmester
项目描述 :
ABAP compiler.
高级语言: Yacc
项目地址: git://github.com/zsoltmester/simple-abap-compiler.git
ABAP compiler
It has less feature, than the original.
Compile this project
- Step by step:
flex lexical.l
bisonc++ grammar.y
g++ -o AbapSimple lex.yy.cc main.cc parse.cc
- Or with the makefile:
make