X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=Makefile.in;h=3b8b7ecaca67dbd1a1cf01db357f53695a949f7a;hb=21ac993da0a187821e812fe7b5b31a426121a546;hp=179b3153f08bbdf204196d04cc6fc7044b677c52;hpb=e9a09381d1b441733fcb5b6a4ad630b53d1c1f14;p=ocaml-libvirt.git diff --git a/Makefile.in b/Makefile.in index 179b315..3b8b7ec 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,8 @@ 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 distclean: clean rm -f config.h config.log config.status configure @@ -47,9 +48,9 @@ distclean: clean rm -f META rm -f libvirt/libvirt_version.ml rm -f Makefile + rm -f Make.rules rm -f libvirt/Makefile rm -f examples/Makefile - rm -f mlvirsh/Makefile # Developer documentation (in html/ subdirectory). @@ -97,7 +98,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; \