2017-08-21 15:34:15 +00:00
|
|
|
MSBUILD = msbuild
|
|
|
|
CONFIGURATION = Debug
|
|
|
|
|
|
|
|
all: build check
|
|
|
|
|
2020-07-10 08:44:59 +00:00
|
|
|
build:
|
|
|
|
$(MSBUILD) ../monolinker.sln /restore /p:Configuration=$(CONFIGURATION) /p:MonoBuild=true
|
2017-08-21 15:34:15 +00:00
|
|
|
|
|
|
|
clean:
|
2020-07-10 08:44:59 +00:00
|
|
|
$(MSBUILD) ../monolinker.sln /p:MonoBuild=true /t:clean
|
2017-08-21 15:34:15 +00:00
|
|
|
|
2020-07-10 08:44:59 +00:00
|
|
|
check:
|
|
|
|
$(MSBUILD) ../test/Mono.Linker.Tests/Mono.Linker.Tests.csproj /p:MonoBuild=true /t:RunTestsOnMono
|