Fine tune whitespace, which node tags are translated, addition of braces, etc
[c_to_python.git] / Makefile
1 all: lex_yy.py y_tab.py
2
3 lex_yy.py: ansi_c.l
4         ../bootstrap_flex.git/src/flex -o /dev/null $< 2>$<.xml
5         ../pilex.git/pilex.py --element --python $<.xml
6
7 y_tab.py: ansi_c.y
8         ../bootstrap_bison.git/src/bison -o /dev/null $< 2>$<.xml
9         ../piyacc.git/piyacc.py --element --python $<.xml
10
11 clean:
12         rm -f lex_yy.py y_tab.py *.xml