1 CPPFLAGS := -g3 -O0 -Wall -Werror
2 LDFLAGS := -Wl,--as-needed
6 inapt: inapt.o parser.o contrib/acqprogress.o util.o
7 g++ -o inapt -g3 -Wall -Werror -lapt-pkg $^
12 ragel parser.rl -o parser.cc
15 ragel -pV parser.rl -o parser.dot
17 parser.png: parser.dot
18 dot -Tpng -o parser.png parser.dot
21 rm -f *.o inapt parser.png parser.dot parser.cc