aboutsummaryrefslogtreecommitdiffstats
path: root/tools/ocaml
diff options
context:
space:
mode:
authorVincent Bernardoff <vincent.bernardoff@citrix.com>2013-04-15 17:02:40 +0100
committerIan Campbell <ian.campbell@citrix.com>2013-04-17 14:23:00 +0100
commit717d9e5f764a8ef4e405a37d5e20d0ca50791b0f (patch)
tree659624bedaad89cde8dfc0e869d3f483f8c7ba20 /tools/ocaml
parent22bbb58689dbbdbe2e0a9309f8894edf0b2fa9ae (diff)
downloadxen-717d9e5f764a8ef4e405a37d5e20d0ca50791b0f.tar.gz
xen-717d9e5f764a8ef4e405a37d5e20d0ca50791b0f.tar.bz2
xen-717d9e5f764a8ef4e405a37d5e20d0ca50791b0f.zip
tools/ocaml: clean META files
As META files are generated from META.in files, they should be cleaned by clean rules. Signed-off-by: Vincent Bernardoff <vincent.bernardoff@citrix.com> Acked-by: Ian Campbell <ian.campbell@citrix.com>
Diffstat (limited to 'tools/ocaml')
-rw-r--r--tools/ocaml/Makefile.rules2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/ocaml/Makefile.rules b/tools/ocaml/Makefile.rules
index ff19067ccf..5e6d81e4e9 100644
--- a/tools/ocaml/Makefile.rules
+++ b/tools/ocaml/Makefile.rules
@@ -45,7 +45,7 @@ ALL_OCAML_OBJ_SOURCES=$(addsuffix .ml, $(ALL_OCAML_OBJS))
$(call quiet-command, $(OCAMLDEP) $(ALL_OCAML_OBJ_SOURCES) *.mli $o,MLDEP,)
clean: $(CLEAN_HOOKS)
- $(Q)rm -f .*.d *.o *.so *.a *.cmo *.cmi *.cma *.cmx *.cmxa *.annot *.spot *.spit $(LIBS) $(PROGRAMS) $(GENERATED_FILES) .ocamldep.make
+ $(Q)rm -f .*.d *.o *.so *.a *.cmo *.cmi *.cma *.cmx *.cmxa *.annot *.spot *.spit $(LIBS) $(PROGRAMS) $(GENERATED_FILES) .ocamldep.make META
quiet-command = $(if $(V),$1,@printf " %-8s %s\n" "$2" "$3" && $1)