Version 0.3.3.2.
[virt-top.git] / Makefile.in
index 3ad12ac..1db3843 100644 (file)
@@ -1,4 +1,19 @@
-# $Id: Makefile.in,v 1.7 2007/08/23 09:36:04 rjones Exp $
+# ocaml-libvirt
+# Copyright (C) 2007 Red Hat Inc., Richard W.M. Jones
+#
+# This library is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License as published by the Free Software Foundation; either
+# version 2 of the License, or (at your option) any later version.
+#
+# This library is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this library; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301  USA
 
 PACKAGE                = @PACKAGE_NAME@
 VERSION                = @PACKAGE_VERSION@
@@ -7,6 +22,7 @@ INSTALL                = @INSTALL@
 
 pkg_lablgtk2   = @pkg_lablgtk2@
 pkg_curses     = @pkg_curses@
+pkg_xml_light  = @pkg_xml_light@
 
 OCAMLDOCFLAGS  := -html -sort
 
@@ -20,6 +36,10 @@ ifeq ($(pkg_curses),yes)
 SUBDIRS                += virt-top
 endif
 
+ifeq ($(pkg_xml_light),yes)
+SUBDIRS                += virt-df
+endif
+
 all opt depend install:
        for d in $(SUBDIRS); do \
          $(MAKE) -C $$d $@; \
@@ -35,10 +55,35 @@ clean:
        rm -f mlvirtmanager/mlvirtmanager
        rm -f virt-top/virt-top
 
-distclean:
-       rm -f config.h config.log config.status configure META
+distclean: clean
+       rm -f config.h config.log config.status configure
        rm -rf autom4te.cache
+       rm -f META
+       rm -f libvirt/libvirt_version.ml
        rm -f Makefile
+       rm -f libvirt/Makefile
+       rm -f examples/Makefile
+       rm -f mlvirsh/Makefile
+       rm -f mlvirtmanager/Makefile
+       rm -f virt-top/Makefile
+       rm -f virt-df/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.
 
@@ -53,22 +98,43 @@ 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/websites
+
+release_stage_3:
+       rm -f $(WEBSITE)/ocaml-libvirt/html/*.{html,css}
+       cp html/*.{html,css} $(WEBSITE)/ocaml-libvirt/html/
+       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
+
+# Upload to main website.
+
+upload:
+       cd $(WEBSITE)/ocaml-libvirt && \
+       scp ChangeLog.txt index.html README.txt Screenshot*.png \
+         libvirt.org:/data/www/libvirt.org/ocaml && \
+       scp css/*.css \
+         libvirt.org:/data/www/libvirt.org/ocaml/css/ && \
+       scp html/*.html html/*.css \
+         libvirt.org:/data/www/libvirt.org/ocaml/html/
+       scp $(PACKAGE)-$(VERSION).tar.gz libvirt.org:/data/ftp/libvirt/ocaml/
+
+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