]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/DEVEL/pxp/pxp/rtests/codewriter/Makefile
Initial revision
[helm.git] / helm / DEVEL / pxp / pxp / rtests / codewriter / Makefile
diff --git a/helm/DEVEL/pxp/pxp/rtests/codewriter/Makefile b/helm/DEVEL/pxp/pxp/rtests/codewriter/Makefile
new file mode 100644 (file)
index 0000000..bacc75c
--- /dev/null
@@ -0,0 +1,28 @@
+# make validate:        make bytecode executable
+# make validate.opt:    make native executable
+# make clean:          remove intermediate files (in this directory)
+# make CLEAN:           remove intermediate files (recursively)
+# make distclean:      remove any superflous files (recursively)
+#----------------------------------------------------------------------
+
+OCAMLPATH=../..
+
+compile: compile.ml
+       ocamlfind ocamlc -g -custom -o compile -package .,str -linkpkg compile.ml
+
+#----------------------------------------------------------------------
+.PHONY: all
+all:
+
+.PHONY: clean
+clean:
+       rm -f *.cmi *.cmo *.cma *.cmx *.o *.a *.cmxa sample sample.ml out1 out2
+
+.PHONY: CLEAN
+CLEAN: clean
+
+.PHONY: distclean
+distclean: clean
+       rm -f *~
+       rm -f compile
+