X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2FDEVEL%2Fpxp%2Fpxp%2Ftools%2Fucs2_to_utf8%2FMakefile;fp=helm%2FDEVEL%2Fpxp%2Fpxp%2Ftools%2Fucs2_to_utf8%2FMakefile;h=0000000000000000000000000000000000000000;hb=c7514aaa249a96c5fdd39b1123fbdb38d92f20b6;hp=504cfe5404664c75f7b6d2ef23f5e9bcf10b3113;hpb=1c7fb836e2af4f2f3d18afd0396701f2094265ff;p=helm.git diff --git a/helm/DEVEL/pxp/pxp/tools/ucs2_to_utf8/Makefile b/helm/DEVEL/pxp/pxp/tools/ucs2_to_utf8/Makefile deleted file mode 100644 index 504cfe540..000000000 --- a/helm/DEVEL/pxp/pxp/tools/ucs2_to_utf8/Makefile +++ /dev/null @@ -1,50 +0,0 @@ -#(******************************************************) -#(* Claudio Sacerdoti Coen *) -#(* 14/05/2000 *) -#(******************************************************) - -OCAMLC = ocamlc -OCAMLOPT = ocamlopt -OCAMLDEP = ocamldep -OCAMLLEX = ocamllex -OCAMLYACC = ocamlyacc - -all: ucs2_to_utf8 -opt: ucs2_to_utf8.opt - -DEPOBJS = ucs2_to_utf8.ml lexer.ml parser.ml parser.mli types.ml - -UCS2_TO_UTF8OBJS = types.cmo lexer.cmo parser.cmo ucs2_to_utf8.cmo -UCS2_TO_UTF8OPTOBJS = types.cmx lexer.cmx parser.cmx ucs2_to_utf8.cmx - -lexer.ml: - $(OCAMLLEX) lexer.mll - -parser.ml: - $(OCAMLYACC) parser.mly - -parser.mli: - $(OCAMLYACC) parser.mly - -depend: lexer.ml parser.ml parser.mli - $(OCAMLDEP) $(DEPOBJS) > depend - -ucs2_to_utf8: $(UCS2_TO_UTF8OBJS) - $(OCAMLC) -o ucs2_to_utf8 $(UCS2_TO_UTF8OBJS) - -ucs2_to_utf8.opt: $(UCS2_TO_UTF8OPTOBJS) - $(OCAMLOPT) -o ucs2_to_utf8.opt $(UCS2_TO_UTF8OPTOBJS) - -.SUFFIXES: .ml .mli .cmo .cmi .cmx -.ml.cmo: - $(OCAMLC) -c $< -.mli.cmi: - $(OCAMLC) -c $< -.ml.cmx: - $(OCAMLOPT) -c $< - -clean: - rm -f *.cm[iox] *.o lexer.ml parser.ml parser.mli \ - ucs2_to_utf8 ucs2_to_utf8.opt - -include depend