File: win32.mak

package info (click to toggle)
svn-workbench 1.6.2-2
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 1,936 kB
  • sloc: python: 14,970; sh: 87; makefile: 48; ansic: 9
file content (22 lines) | stat: -rw-r--r-- 661 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
all: kit

kit: workbench-branded.iss info_before.txt copy_setup.cmd
	copy ..\..\LICENSE.txt tmp\workbench_LICENSE.txt
	copy ..\..\Source\bin\wb.exe tmp\WorkBench.exe
	copy ..\..\Source\bin\wb.exe.manifest tmp\WorkBench.exe.manifest
	"c:\Program Files\Inno Setup 5\ISCC.exe" tmp\workbench-branded.iss
	tmp\setup_copy.cmd

info_before.txt: workbench-branded.iss

copy_setup.cmd: workbench-branded.iss

workbench-branded.iss: setup_version_handling.py workbench.iss
	if not exist tmp mkdir tmp
	python setup_version_handling.py

debug:
	"c:\Program Files\Inno Setup 5\Compil32.exe" workbench-branded.iss

clean:
	if exist tmp rmdir /s /q tmp