2008-09-11 21:45:08 -07:00
|
|
|
|
|
|
|
# we get $(PYTHON) from our parent, do 'make windows-exe PYTHON=foo' to
|
2008-09-11 22:09:19 -07:00
|
|
|
# control it, since 'PYTHON=foo make windows-exe' doesn't seem to override
|
|
|
|
# the default.
|
2008-09-11 21:45:08 -07:00
|
|
|
|
|
|
|
INNOSETUP := $(shell cygpath -au "$(PROGRAMFILES)/Inno Setup 5/Compil32.exe")
|
|
|
|
|
|
|
|
windows-exe:
|
|
|
|
$(PYTHON) setup.py py2exe
|
|
|
|
|
2008-09-11 22:09:19 -07:00
|
|
|
windows-installer:
|
|
|
|
$(PYTHON) ../misc/sub-ver.py installer.tmpl >installer.iss
|
|
|
|
"$(INNOSETUP)" /cc installer.iss
|
2008-09-11 21:45:08 -07:00
|
|
|
|
|
|
|
windows-installer-upload:
|
|
|
|
chmod -R o+rx dist/installer
|
|
|
|
rsync -av -e /usr/bin/ssh dist/installer/ amduser@dev:/home/amduser/public_html/dist/tahoe/windows/
|
|
|
|
|