]> matita.cs.unibo.it Git - helm.git/blob - components/binaries/tptp2grafite/Makefile
added parser (and future converter) of tptp files
[helm.git] / components / binaries / tptp2grafite / Makefile
1 all: tptp2grafite
2
3 tptp2grafite:
4         ocamlc -c ast.ml
5         ocamlyacc parser.mly
6         ocamlc -c parser.mli
7         ocamlc -c parser.ml
8         ocamllex lexer.mll
9         ocamlc -c lexer.ml
10         ocamlc -c main.ml
11         ocamlc -o tptp2grafite ast.cmo lexer.cmo parser.cmo main.cmo
12
13 clean:
14         rm -r tptp2grafite *.cmo *.cmi parser.mli parser.ml lexer.ml