1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
#
# makefile - make the windows kit
#
!ifndef ARCH
!error "ARCH must be provided"
!endif
!ifndef VC_VER
!error "VC_VER must be provided"
!endif
all: kit_msvc
kit_msvc: setup_kit_files.py
if exist tmp rmdir /s /q tmp
mkdir tmp
copy ..\..\LICENSE.txt tmp\LICENSE.txt
$(PYTHON) setup_kit_files.py $(ARCH) $(VC_VER)
"C:\Program Files (x86)\Inno Setup 6\ISCC.exe" tmp\pysvn.iss
tmp\setup_copy.cmd
debug:
"C:\Program Files (x86)\Inno Setup 6\Compil32.exe" pysvn.iss
clean:
if exist tmp rmdir /s /q tmp
|