X-Git-Url: http://git.annexia.org/?p=virt-top.git;a=blobdiff_plain;f=Makefile.in;h=52776e0ddc81d779a869530184a2aeeff9f45c5e;hp=9810b0bc6f636095b989882fc83e56241bae3c6f;hb=748302caa93af2c412bcd30dad5787a5a24e9af5;hpb=9bb5f67c0d8a6e8dad7de72e2488ee73c90f7d43 diff --git a/Makefile.in b/Makefile.in index 9810b0b..52776e0 100644 --- a/Makefile.in +++ b/Makefile.in @@ -20,25 +20,12 @@ 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 \ @@ -48,12 +35,14 @@ 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 *.exe core); \ done rm -f examples/list_domains + rm -f examples/node_info rm -f mlvirsh/mlvirsh - rm -f mlvirtmanager/mlvirtmanager + rm -f virt-ctrl/virt-ctrl rm -f virt-top/virt-top + rm -f virt-df/virt-df distclean: clean rm -f config.h config.log config.status configure @@ -64,18 +53,34 @@ distclean: clean rm -f libvirt/Makefile rm -f examples/Makefile rm -f mlvirsh/Makefile - rm -f mlvirtmanager/Makefile + rm -f virt-ctrl/Makefile rm -f virt-top/Makefile rm -f virt-df/Makefile # 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). + +WININSTALLER := $(PACKAGE)-$(VERSION).exe + +ifneq ($(MAKENSIS),) +wininstaller: $(WININSTALLER) + +$(WININSTALLER): wininstaller.nsis all opt + "$(MAKENSIS)" \ + //DPACKAGE=$(PACKAGE) //DVERSION=$(VERSION) \ + //DOUTFILE=$@ $< + ls -l $@ +endif # Update configure and rerun. @@ -112,16 +117,32 @@ 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/ + +# Upload Windows binary installer to main website. + +winupload: + scp $(WININSTALLER) libvirt.org:/data/ftp/libvirt/ocaml/ force: