From: Richard W.M. Jones <"Richard W.M. Jones "> Date: Tue, 8 Jan 2008 11:22:01 +0000 (+0000) Subject: Version 0.4.0.1 released. X-Git-Tag: 1.0.4~75 X-Git-Url: http://git.annexia.org/?p=virt-top.git;a=commitdiff_plain;h=5feca72a227ae93db526a09596d5457116c10c5e Version 0.4.0.1 released. * Makefile.in: Provide a 'winupload' target. --- diff --git a/ChangeLog b/ChangeLog index 8c214d6..8cd5f68 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2008-01-08 Richard Jones + Version 0.4.0.1 released. + * Makefile.in: Provide a 'winupload' target. + Rename some dialogs in virt-ctrl. * virt-ctrl/vc_mainwindow.ml: Fix some "virtual machine manager" -> "virt-ctrl" dialogs in main window. diff --git a/Makefile.in b/Makefile.in index 53a6829..8d53710 100644 --- a/Makefile.in +++ b/Makefile.in @@ -69,10 +69,12 @@ endif # Windows installer (requires NSIS). +WININSTALLER := $(PACKAGE)-$(VERSION).exe + ifneq ($(MAKENSIS),) -wininstaller: $(PACKAGE)-$(VERSION).exe +wininstaller: $(WININSTALLER) -$(PACKAGE)-$(VERSION).exe: wininstaller.nsis all opt +$(WININSTALLER): wininstaller.nsis all opt "$(MAKENSIS)" \ //DPACKAGE=$(PACKAGE) //DVERSION=$(VERSION) \ //DOUTFILE=$@ $< @@ -136,6 +138,11 @@ upload: 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: .PHONY: all opt depend install clean distclean configure dist check-manifest \