Practice of the subject Automata Theory and Formal Language. University of Cádiz.
Practice of the subject Automata Theory and Formal Language. University of Cádiz.
For an easy compilation, you just need the provided Makefile, so:
make all
If you want to compile every file step by step:
make flex
make bison
make analyzer
But, if you prefer the “hard’’ way:
flex lexicon.l
bison -d syntactic.y
g++ lex.yy.c syntactic.tab.c -o analyzer -lfl -lm
Finally, if you want to execute the analyzer, just type:
make exe FILE="CircuitName.circuit"
The other option is:
cat CircuitName.circuit | ./analyzer