From 5feca72a227ae93db526a09596d5457116c10c5e Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Thu, 1 Jan 1970 00:00:00 +0000 Subject: [PATCH] Version 0.4.0.1 released. * Makefile.in: Provide a 'winupload' target. --- ChangeLog | 3 +++ Makefile.in | 11 +++++++++-- 2 files changed, 12 insertions(+), 2 deletions(-) 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 \ -- 1.8.3.1