X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2FDEVEL%2Fpxp%2Fpxp%2Fexamples%2Fvalidate%2FMakefile;fp=helm%2FDEVEL%2Fpxp%2Fpxp%2Fexamples%2Fvalidate%2FMakefile;h=64b6918875b8fa4d228959df336d0f372702c9be;hb=c03d2c1fdab8d228cb88aaba5ca0f556318bebc5;hp=0000000000000000000000000000000000000000;hpb=758057e85325f94cd88583feb1fdf6b038e35055;p=helm.git diff --git a/helm/DEVEL/pxp/pxp/examples/validate/Makefile b/helm/DEVEL/pxp/pxp/examples/validate/Makefile new file mode 100644 index 000000000..64b691887 --- /dev/null +++ b/helm/DEVEL/pxp/pxp/examples/validate/Makefile @@ -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) +#---------------------------------------------------------------------- + +pxpvalidate: validate.ml + ocamlfind ocamlc -o pxpvalidate -package "pxp" -linkpkg validate.ml + +pxpvalidate.opt: validate.ml + ocamlfind ocamlopt -o pxpvalidate.opt -package "pxp" -linkpkg validate.ml + +#---------------------------------------------------------------------- +.PHONY: all +all: + +.PHONY: clean +clean: + rm -f *.cmi *.cmo *.cma *.cmx *.o *.a *.cmxa + +.PHONY: CLEAN +CLEAN: clean + +.PHONY: distclean +distclean: clean + rm -f *~ + rm -f pxpvalidate pxpvalidate.opt