7 lines
189 B
Bash
Executable File
7 lines
189 B
Bash
Executable File
bison -o parser.cpp -d parser.y
|
|
flex -o scanner.cpp scanner.l
|
|
g++ -c -o scanner.o scanner.cpp
|
|
g++ -c -o parser.o parser.cpp
|
|
g++ -c -o type.o type.cpp
|
|
g++ main.cpp parser.o scanner.o type.o
|