X-Git-Url: http://git.annexia.org/?p=virt-top.git;a=blobdiff_plain;f=Makefile.in;h=a7cc00b9c8baff6ca7f4d507bd5f77d9857ab8c9;hp=ce2e803a429c5af49f082f71ca4f7118758c6e57;hb=7ae8ab4cf04a8d0705115af44fa7364ebc01b167;hpb=0e09861c06a0c274bcfdacceaee347f8aaa969cb;ds=sidebyside diff --git a/Makefile.in b/Makefile.in old mode 100644 new mode 100755 index ce2e803..a7cc00b --- a/Makefile.in +++ b/Makefile.in @@ -1,27 +1,31 @@ +# 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@ INSTALL = @INSTALL@ -pkg_lablgtk2 = @pkg_lablgtk2@ -pkg_curses = @pkg_curses@ -pkg_xml_light = @pkg_xml_light@ +MAKENSIS = @MAKENSIS@ +OCAMLDOC = @OCAMLDOC@ OCAMLDOCFLAGS := -html -sort -SUBDIRS := libvirt examples mlvirsh - -ifeq ($(pkg_lablgtk2),yes) -SUBDIRS += mlvirtmanager -endif - -ifeq ($(pkg_curses),yes) -SUBDIRS += virt-top -endif - -ifeq ($(pkg_xml_light),yes) -SUBDIRS += virt-df -endif +SUBDIRS = @subdirs@ all opt depend install: for d in $(SUBDIRS); do \ @@ -31,12 +35,13 @@ all opt depend install: clean: for d in . $(SUBDIRS); do \ - (cd $$d; rm -f *.cmi *.cmo *.cmx *.cma *.cmxa *.o *.a *.so *.opt *~ core); \ + (cd $$d; rm -f *.cmi *.cmo *.cmx *.cma *.cmxa *.o *.a *.so *.opt *~ *.dll core); \ done rm -f examples/list_domains rm -f mlvirsh/mlvirsh rm -f mlvirtmanager/mlvirtmanager rm -f virt-top/virt-top + rm -f virt-df/virt-df distclean: clean rm -f config.h config.log config.status configure @@ -53,12 +58,26 @@ distclean: clean # Developer documentation (in html/ subdirectory). +ifneq ($(OCAMLDOC),) doc: rm -rf html mkdir html -cd libvirt; \ - ocamlfind ocamldoc $(OCAMLDOCFLAGS) -d ../html \ + $(OCAMLDOC) $(OCAMLDOCFLAGS) -d ../html \ libvirt.{ml,mli} libvirt_version.{ml,mli} +endif + +# Windows installer (requires NSIS). + +ifneq ($(MAKENSIS),) +wininstaller: $(PACKAGE)-$(VERSION).exe + +$(PACKAGE)-$(VERSION).exe: wininstaller.nsis all # opt + "$(MAKENSIS)" \ + //DPACKAGE=$(PACKAGE) //DVERSION=$(VERSION) \ + //DOUTFILE=$@ $< + ls -l $@ +endif # Update configure and rerun. @@ -95,16 +114,27 @@ release: configure release_stage_2: clean all opt doc dist $(MAKE) release_stage_3 -WEBSITE = ../redhat/et-website +WEBSITE = ../redhat/websites 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 +# 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: