X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=Makefile.in;h=2605dddf882944c3c42fbedfdcef0d81456a080b;hb=afa590cde00a228a062461847a116d70145ef77f;hp=e816d3b8501978ba2ff49139cbdfd5c8b0c7a21e;hpb=1d0c5c02dc9d41074218f8ae7e974eb79ec6c600;p=ocaml-libvirt.git diff --git a/Makefile.in b/Makefile.in index e816d3b..2605ddd 100644 --- a/Makefile.in +++ b/Makefile.in @@ -25,7 +25,7 @@ MAKENSIS = @MAKENSIS@ OCAMLDOC = @OCAMLDOC@ OCAMLDOCFLAGS := -html -sort -SUBDIRS = libvirt mlvirsh examples +SUBDIRS = libvirt examples all opt depend install-opt install-byte: for d in $(SUBDIRS); do \ @@ -39,7 +39,9 @@ clean: done rm -f examples/list_domains rm -f examples/node_info - rm -f mlvirsh/mlvirsh + rm -f examples/get_cpu_stats + rm -f examples/domain_events + rm -f examples/get_all_domain_stats distclean: clean rm -f config.h config.log config.status configure @@ -50,9 +52,6 @@ distclean: clean rm -f Make.rules rm -f libvirt/Makefile rm -f examples/Makefile - rm -f mlvirsh/Makefile - rm -f mlvirsh/mlvirsh_gettext.ml - rm -f po/Makefile # Developer documentation (in html/ subdirectory). @@ -100,7 +99,7 @@ dist: ChangeLog ls -l $(PACKAGE)-$(VERSION).tar.gz check-manifest: - hg manifest | sort > .check-manifest; \ + git ls-files | sort > .check-manifest; \ sort MANIFEST > .orig-manifest; \ diff -u .orig-manifest .check-manifest; rv=$$?; \ rm -f .orig-manifest .check-manifest; \