X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Focaml%2Fgrafite_parser%2FMakefile;fp=helm%2Focaml%2Fgrafite_parser%2FMakefile;h=25896da87d32039ba5c95774d3a89af9d8e85840;hb=c051f623926cdc3b744c38ba393c0a9c7622d299;hp=4b04b597ee4917f19c9160c32d69b3321e758eb5;hpb=0ef468f9000a8e9c391cc8ade2f9aea35e878305;p=helm.git diff --git a/helm/ocaml/grafite_parser/Makefile b/helm/ocaml/grafite_parser/Makefile index 4b04b597e..25896da87 100644 --- a/helm/ocaml/grafite_parser/Makefile +++ b/helm/ocaml/grafite_parser/Makefile @@ -33,10 +33,13 @@ clean_tests: LOCAL_LINKOPTS = -package helm-$(PACKAGE) -linkpkg test: test_parser print_grammar test_dep test_parser: test_parser.ml $(PACKAGE).cma - $(OCAMLC) $(LOCAL_LINKOPTS) -o $@ $< + @echo " OCAMLC $<" + @$(OCAMLC) $(LOCAL_LINKOPTS) -o $@ $< print_grammar: print_grammar.ml $(PACKAGE).cma - $(OCAMLC) $(LOCAL_LINKOPTS) -o $@ $< + @echo " OCAMLC $<" + @$(OCAMLC) $(LOCAL_LINKOPTS) -o $@ $< test_dep: test_dep.ml $(PACKAGE).cma - $(OCAMLC) $(LOCAL_LINKOPTS) -o $@ $< + @echo " OCAMLC $<" + @$(OCAMLC) $(LOCAL_LINKOPTS) -o $@ $< include ../Makefile.common