File: makefile

package info (click to toggle)
pysvn 1.9.22-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 7,212 kB
  • sloc: cpp: 20,327; python: 5,485; sh: 869; javascript: 57; makefile: 56; ansic: 52
file content (27 lines) | stat: -rw-r--r-- 537 bytes parent folder | download
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