X-Git-Url: http://git.annexia.org/?p=virt-top.git;a=blobdiff_plain;f=Makefile.in;h=789eaae23ef4a2245ec05668744eadae9e29144d;hp=fedf4430a280eaede0f9c248e63e08e410922ed3;hb=b2c4dbaf7a3f9da9e4236fc46cf72b0ef4ee300d;hpb=4bc4d8bfaa99eae626c1c5fbe50096afb05fd0da diff --git a/Makefile.in b/Makefile.in index fedf443..789eaae 100644 --- a/Makefile.in +++ b/Makefile.in @@ -21,9 +21,9 @@ ifeq ($(pkg_curses),yes) SUBDIRS += virt-top endif -ifeq ($(pkg_xml_light),yes) -SUBDIRS += virt-df -endif +#ifeq ($(pkg_xml_light),yes) +#SUBDIRS += virt-df +#endif all opt depend install: for d in $(SUBDIRS); do \ @@ -45,6 +45,23 @@ distclean: rm -rf autom4te.cache rm -f Makefile +# Developer documentation (in html/ subdirectory). + +doc: + rm -rf html + mkdir html + -cd libvirt; \ + ocamlfind ocamldoc $(OCAMLDOCFLAGS) -d ../html \ + libvirt.{ml,mli} libvirt_version.{ml,mli} + +# Update configure and rerun. + +configure: force + autoreconf + CFLAGS=-g \ + ./configure \ + --enable-debug=yes --with-libvirt=/home/rjones/local + # Distribution. dist: @@ -58,22 +75,32 @@ dist: ls -l $(PACKAGE)-$(VERSION).tar.gz check-manifest: - @for d in `find -type d -name CVS | grep -v '^\./debian/'`; \ - do \ - b=`dirname $$d`/; \ - awk -F/ '$$1 != "D" {print $$2}' $$d/Entries | \ - sed -e "s|^|$$b|" -e "s|^\./||"; \ - done | sort > .check-manifest; \ + hg manifest | sort > .check-manifest; \ sort MANIFEST > .orig-manifest; \ diff -u .orig-manifest .check-manifest; rv=$$?; \ rm -f .orig-manifest .check-manifest; \ exit $$rv -# Developer documentation (in html/ subdirectory). +# Do a release (update the website). -doc: - rm -rf html - mkdir html - -cd libvirt; \ - ocamlfind ocamldoc $(OCAMLDOCFLAGS) -d ../html \ - libvirt.{ml,mli} libvirt_version.{ml,mli} +release: configure + $(MAKE) release_stage_2 + +release_stage_2: clean all opt doc dist + $(MAKE) release_stage_3 + +WEBSITE = ../redhat/et-website + +release_stage_3: + rm -f $(WEBSITE)/ocaml-libvirt/html/*.{html,css} + cp html/*.{html,css} $(WEBSITE)/ocaml-libvirt/html/ + cp $(PACKAGE)-$(VERSION).tar.gz $(WEBSITE)/ocaml-libvirt/ + cp README $(WEBSITE)/ocaml-libvirt/README.txt + cp ChangeLog $(WEBSITE)/ocaml-libvirt/ChangeLog.txt + cp virt-top/virt-top.txt $(WEBSITE)/virt-top/ + cp ChangeLog $(WEBSITE)/virt-top/ChangeLog.txt + +force: + +.PHONY: all opt depend install clean distclean configure dist check-manifest \ + release release_stage_2 release_stage_3 force \ No newline at end of file