]> matita.cs.unibo.it Git - fireball-separation.git/blobdiff - ocaml/Makefile
Copied files from strong_simple branch + Implemented andrea's finish
[fireball-separation.git] / ocaml / Makefile
index 701d50ac0dfd5a9cc6c5912bc729dc6cce7f4a39..b76514c9ca2351a7205d2f4145c355dcb3ea5653 100644 (file)
@@ -1,11 +1,14 @@
 OCAMLC = ocamlopt -g -rectypes
 LIB = unix.cmxa str.cmxa
-UTILS = util.cmx console.cmx parser.cmx
+UTILS = util.cmx console.cmx listx.cmx pure.cmx num.cmx parser.cmx problems.cmx
 
-all: andrea.out
+all: simple.out simple_test.out
 
-andrea.out: $(UTILS) andrea.ml
-       $(OCAMLC) -o andrea.out $(LIB) $(UTILS) andrea.ml
+simple.out: $(UTILS) simple.cmx
+       $(OCAMLC) -o simple.out $(LIB) $^
+
+simple_test.out: $(UTILS) simple.cmx simple_test.ml
+       $(OCAMLC) -o simple_test.out $(LIB) $^
 
 %.cmi: %.mli
        $(OCAMLC) -c $<