]> matita.cs.unibo.it Git - helm.git/blob - helm/ocaml/tactics/paramodulation/Makefile
fixes for paramodulation relocation
[helm.git] / helm / ocaml / tactics / paramodulation / Makefile
1 PACKAGE = dummy
2
3 LOCALLINKOPTS = -package helm-cic_disambiguation,helm-content_pres,helm-grafite,helm-grafite_parser,helm-tactics
4
5 all:saturate
6 opt:saturate.opt
7
8 saturate: saturate_main.ml $(LIBRARIES)
9         $(OCAMLC) $(LOCALLINKOPTS) -thread -linkpkg -o $@ $<
10 saturate.opt: saturate_main.ml $(LIBRARIES)
11         $(OCAMLOPT) $(LOCALLINKOPTS) -thread -linkpkg -o $@ $<
12
13 include ../../Makefile.common
14
15 clean:
16         rm -f saturate saturate.opt
17
18