This repository has been archived by the owner on Sep 14, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 347
/
Makefile
54 lines (40 loc) · 2.18 KB
/
Makefile
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
.PHONY: all clean ironpython
all: ironpython
ironpython:
xbuild Build.proj /t:Build "/p:Mono=true;BaseConfiguration=Debug" /verbosity:minimal /nologo
ironpython-release:
xbuild Build.proj /t:Build "/p:Mono=true;BaseConfiguration=Release" /verbosity:minimal /nologo
testrunner:
xbuild Test/ClrAssembly/ClrAssembly.csproj /t:Rebuild /p:Configuration=Debug /verbosity:minimal /nologo
xbuild Test/TestRunner/TestRunner.sln /p:Configuration=Debug /verbosity:minimal /nologo
rm -rf bin/Debug/DLLs/PresentationFramework.dll \
bin/Debug/DLLs/IronPython.Wpf.dll \
bin/Debug/DLLs/WindowsBase.dll \
bin/Debug/DLLs/System.Xaml.dll
testrunner-release:
xbuild Test/ClrAssembly/ClrAssembly.csproj /t:Rebuild /p:Configuration=Release /verbosity:minimal /nologo
xbuild Test/TestRunner/TestRunner.sln /p:Configuration=Release /verbosity:minimal /nologo
rm -rf bin/Release/DLLs/PresentationFramework.dll \
bin/Release/DLLs/IronPython.Wpf.dll \
bin/Release/DLLs/WindowsBase.dll \
bin/Release/DLLs/System.Xaml.dll
test-ipy: ironpython testrunner
CONFIGURATION=Debug DLR_ROOT=`pwd` DLR_BIN=`pwd`bin/Debug \
mono Test/TestRunner/TestRunner/bin/Debug/TestRunner.exe \
Test/IronPython.tests /binpath:bin/Debug /all /runlong
test-ipy-release: ironpython-release testrunner-release
CONFIGURATION=Release DLR_ROOT=`pwd` DLR_BIN=`pwd`bin/Release \
mono Test/TestRunner/TestRunner/bin/Release/TestRunner.exe \
Test/IronPython.tests /binpath:bin/Release /all /runlong
test-ipy-disabled: ironpython testrunner
CONFIGURATION=Debug DLR_ROOT=`pwd` DLR_BIN=`pwd`bin/Debug \
mono Test/TestRunner/TestRunner/bin/Debug/TestRunner.exe \
Test/IronPython.tests /binpath:bin/Debug /all /runlong /rundisabled
test-ipy-disabled-release: ironpython-release testrunner-release
CONFIGURATION=Release DLR_ROOT=`pwd` DLR_BIN=`pwd`bin/Release \
mono Test/TestRunner/TestRunner/bin/Release/TestRunner.exe \
Test/IronPython.tests /binpath:bin/Release /all /runlong /rundisabled
package-release:
xbuild Build.proj /t:Package "/p:Mono=true;BaseConfiguration=Release" /verbosity:minimal /nologo
clean:
xbuild Build.proj /t:Clean /p:Mono=true /verbosity:minimal /nologo