forked from IronLanguages/main
-
Notifications
You must be signed in to change notification settings - Fork 0
/
make.cmd
73 lines (57 loc) · 1.22 KB
/
make.cmd
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
@echo off
setlocal
set PATH=%PATH%;%WINDIR%\Microsoft.NET\Framework\v4.0.30319;%WINDIR%\Microsoft.NET\Framework\v3.5
:getopts
if "%1"=="" (goto :default) else (goto :%1)
goto :exit
:default
goto :debug
:debug
set _target=Build
set _flavour=Debug
goto :main
:clean-debug
set _target=Clean
set _flavour=Debug
goto :main
:stage-debug
set _target=Stage
set _flavour=Debug
goto :main
:release
set _target=Build
set _flavour=Release
goto :main
:clean-release
set _target=Clean
set _flavour=Release
goto :main
:stage-release
set _target=Stage
set _flavour=Release
goto :main
:package-release
set _target=Package
set _flavour=Release
goto :main
:clean
echo No target 'clean'. Try 'clean-debug' or 'clean-release'.
goto :exit
:stage
echo No target 'stage'. Try 'stage-debug' or 'stage-release'.
goto :exit
:package
echo No target 'package'. Try 'package-release'.
goto :exit
:test
Test\test-ipy-tc.cmd /category:Languages\IronPython\IronPython\2.X
goto :exit
:distclean
msbuild /t:DistClean /p:BaseConfiguration=Release /verbosity:minimal /nologo
msbuild /t:DistClean /p:BaseConfiguration=Debug /verbosity:minimal /nologo
goto :main
:main
msbuild /t:%_target% /p:BaseConfiguration=%_flavour% /verbosity:minimal /nologo
goto :exit
:exit
endlocal