An open API service indexing awesome lists of open source software.

https://github.com/noot/csc467-lab1

implementation of a lexical analyzer
https://github.com/noot/csc467-lab1

Last synced: 21 days ago
JSON representation

implementation of a lexical analyzer

Awesome Lists containing this project

README

          

to compile scanner.l: `flex scanner.l`

to compile parser.y: `bison -d parser.y`

to compile generated c files: `gcc lex.yy.c parser.tab.c`

to make project: `make`

to run compiler467 with trace scanner and input file: `./compiler467 -Tn test.in`