mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-21 18:23:03 +00:00
Start a set of simple examples.
* examples/calc++/Makefile, examples/calc++/calc++-driver.cc, * examples/calc++/calc++-driver.hh, * examples/calc++/calc++-parser.yy, * examples/calc++/calc++-scanner.ll, examples/calc++/calc++.cc, * examples/calc++/compile, examples/calc++/test: New.
This commit is contained in:
15
examples/calc++/Makefile
Normal file
15
examples/calc++/Makefile
Normal file
@@ -0,0 +1,15 @@
|
||||
all: calc++
|
||||
|
||||
calc++:
|
||||
flex -ocalc++-scanner.cc calc++-scanner.ll
|
||||
bison -o calc++-parser.cc calc++-parser.yy
|
||||
$(CC) -o calc++ calc++.cc calc++-driver.cc calc++-parser.cc calc++-scanner.cc
|
||||
|
||||
check: all
|
||||
./test
|
||||
|
||||
clean:
|
||||
rm -f *~ *.o *.tab.* input position.hh location.hh stack.hh \
|
||||
calc++-parser.cc calc++-parser.hh \
|
||||
calc++-scanner.cc \
|
||||
calc++
|
||||
Reference in New Issue
Block a user