Update Makefile to make it compile with recent pilex
[c_to_python.git] / Makefile
1 all: element.py lex_yy.py t_def.py y_tab.py
2
3 element.py:
4         pitree --install-element
5
6 lex_yy.py: ansi_c.l
7         pilex --element --groups --python $<
8
9 t_def.py: ansi_c.t
10         pitree --python $<
11
12 y_tab.py: ansi_c.y
13         piyacc --element --python $<
14
15 clean:
16         rm -f element.py lex_yy.py t_def.py y_tab.py