File: win32.mak

package info (click to toggle)
svn-workbench 1.5.0-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 2,400 kB
  • ctags: 1,585
  • sloc: python: 12,163; sh: 74; makefile: 46; ansic: 9
file content (21 lines) | stat: -rw-r--r-- 594 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
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
	"c:\Program Files\Inno Setup 4\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 4\Compil32.exe" workbench-branded.iss

clean:
	if exist tmp rmdir /s /q tmp