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=0000000000000000000000000000000000000000;hb=e108abe5c0b4eb841c4ad332229a6c0e57e70079;hp=64b6918875b8fa4d228959df336d0f372702c9be;hpb=1456c337a60f6677ee742ff7891d43fc382359a9;p=helm.git diff --git a/helm/DEVEL/pxp/pxp/examples/validate/Makefile b/helm/DEVEL/pxp/pxp/examples/validate/Makefile deleted file mode 100644 index 64b691887..000000000 --- a/helm/DEVEL/pxp/pxp/examples/validate/Makefile +++ /dev/null @@ -1,28 +0,0 @@ -# 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