X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2FDEVEL%2Fpxp%2Fpxp%2Fexamples%2Fsimple_transformation%2FMakefile;fp=helm%2FDEVEL%2Fpxp%2Fpxp%2Fexamples%2Fsimple_transformation%2FMakefile;h=27be18c308e501500eaf5101600656da21031b2e;hb=c03d2c1fdab8d228cb88aaba5ca0f556318bebc5;hp=0000000000000000000000000000000000000000;hpb=758057e85325f94cd88583feb1fdf6b038e35055;p=helm.git diff --git a/helm/DEVEL/pxp/pxp/examples/simple_transformation/Makefile b/helm/DEVEL/pxp/pxp/examples/simple_transformation/Makefile new file mode 100644 index 000000000..27be18c30 --- /dev/null +++ b/helm/DEVEL/pxp/pxp/examples/simple_transformation/Makefile @@ -0,0 +1,21 @@ +all: print sort delcol + +print: print.ml + ocamlfind ocamlc -o print -package pxp -linkpkg -custom \ + -predicates pxp_without_utf8 print.ml + +sort: sort.ml + ocamlfind ocamlc -o sort -package pxp -linkpkg -custom \ + -predicates pxp_without_utf8 sort.ml + +delcol: delcol.ml + ocamlfind ocamlc -o delcol -package pxp -linkpkg -custom \ + -predicates pxp_without_utf8 delcol.ml + +clean: + rm -f *.cmo *.cma *.cmi *.cmxa *.a *.o + +distclean: clean + rm -f *~ print sort delcol + +CLEAN: clean