summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rw-r--r--Makefile.in11
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 <rjones@redhat.com>
+ 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 \