901de19af07ef0545a41a81d096785c4829f7479
[external/ragel.git] / examples / atoi / Makefile
1 RAGEL = ../../ragel/ragel
2 RLCODEGEN = ../../rlcodegen/rlcodegen
3
4 all: atoi
5
6 ps: atoi.ps
7
8 atoi: atoi.o
9         g++ -g -o atoi atoi.o 
10
11 atoi.cpp: atoi.rl $(RAGEL) $(RLCODEGEN)
12         $(RAGEL) atoi.rl | $(RLCODEGEN) -G2 -o atoi.cpp
13
14 atoi.o: atoi.cpp
15         g++ -Wall -g -c -O3 -o $@ $<
16
17 atoi.ps: atoi.rl $(RAGEL) $(RLCODEGEN)
18         $(RAGEL) atoi.rl | $(RLCODEGEN) -V | dot -Tps > atoi.ps
19
20 distclean clean:
21         rm -Rf *.o atoi.cpp atoi atoi.ps