]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/blob - windows/Makefile
702ecc0555a9c8ecb752cf00194aee3b7a78c7d4
[tahoe-lafs/tahoe-lafs.git] / windows / Makefile
1
2 # we get $(PYTHON) from our parent, do 'make windows-exe PYTHON=foo' to
3 # control it, since 'PYTHON=foo make windows-exe' doesn't seem to trigger the
4 # export.
5
6 INNOSETUP := $(shell cygpath -au "$(PROGRAMFILES)/Inno Setup 5/Compil32.exe")
7
8 windows-exe:
9         $(PYTHON) setup.py py2exe
10
11 windows-installer: windows-exe
12         $(PYTHON) ../sub-ver.py installer.tmpl >installer.iss
13         $(INNOSETUP) /cc installer.iss
14
15 windows-installer-upload:
16         chmod -R o+rx dist/installer
17         rsync -av -e /usr/bin/ssh dist/installer/ amduser@dev:/home/amduser/public_html/dist/tahoe/windows/
18