From 5feca72a227ae93db526a09596d5457116c10c5e Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Tue, 8 Jan 2008 11:22:01 +0000 Subject: Version 0.4.0.1 released. * Makefile.in: Provide a 'winupload' target. --- Makefile.in | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'Makefile.in') 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 \ -- cgit